ssh-askpass: add switch to hide/show input
[git-cola.git] / tox.ini
blob83a9d145ff10cfa24c42c73c08c8c07caf31d11b
1 [tox]
2 minversion = 1.8
3 envlist = py{27,34,35,36,37}
5 [testenv]
6 sitepackages = true
7 deps =
8 -rrequirements/requirements.txt
9 -rrequirements/requirements-dev.txt
10 whitelist_externals =
11 make
12 commands =
13 make test {posargs}
14 make flake8 {posargs}
16 [testenv:pylint2]
17 basepython = python2.7
18 sitepackages = true
19 deps = {[testenv]deps}
20 whitelist_externals =
21 make
22 commands =
23 make pylint {posargs}
24 make pylint3k {posargs}
26 [testenv:pylint36]
27 basepython = python3.6
28 sitepackages = true
29 deps = {[testenv]deps}
30 whitelist_externals =
31 make
32 commands =
33 make pylint {posargs}
34 make pylint3k {posargs}
36 [testenv:pylint37]
37 basepython = python3.7
38 sitepackages = true
39 deps = {[testenv]deps}
40 whitelist_externals =
41 make
42 commands =
43 make pylint {posargs}
44 make pylint3k {posargs}