]> git.phdru.name Git - m_librarian.git/blob - tox.ini
Version 0.1.0: Web-interface
[m_librarian.git] / tox.ini
1 [tox]
2 minversion = 1.8
3 toxworkdir={homedir}/.tox/m_librarian
4 envlist = {py27,py34,py35,py36},{py27,py34}-flake8
5
6 # Base test environment settings
7 [testenv]
8 deps =
9     -rdevscripts/requirements/requirements_tests.txt
10 sitepackages = True
11
12 [general]
13 commands =
14     python -m pytest --cov=m_librarian
15
16 [testenv:py27]
17 commands = {[general]commands}
18
19 [testenv:py34]
20 commands = {[general]commands}
21
22 [testenv:py35]
23 commands = {[general]commands}
24
25 [testenv:py36]
26 commands = {[general]commands}
27
28 [testenv:py27-flake8]
29 deps =
30     flake8
31 commands = flake8
32
33 [testenv:py34-flake8]
34 deps =
35     flake8
36 commands = flake8