diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 51 |
1 files changed, 7 insertions, 44 deletions
@@ -1,5 +1,5 @@ [tox] -envlist = py27,py34,py35,py36,py36-win,py37 +envlist = py34,py35,py36,py37,py35-win,py36-win [pytest] testpaths = tests @@ -9,53 +9,20 @@ passenv = CI TRAVIS TRAVIS_* APPVEYOR* setenv = PYTHONPATH={toxinidir} -[testenv:py27] +[testenv:py34] deps = codecov - enum34 - mock pyparsing pyperclip pytest pytest-cov pytest-forked pytest-xdist - six - subprocess32 wcwidth commands = py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing --forked codecov -[testenv:py27-win] -deps = - codecov - enum34 - mock - pyparsing - pyperclip - pyreadline - pytest - pytest-cov - pytest-xdist - six - subprocess32 -commands = - py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing - codecov - -[testenv:py34] -deps = - mock - pyparsing - pyperclip - pytest - pytest-forked - pytest-xdist - six - wcwidth -commands = py.test -v -n2 --forked - [testenv:py35] deps = mock @@ -64,7 +31,6 @@ deps = pytest pytest-forked pytest-xdist - six wcwidth commands = py.test -v -n2 --forked @@ -76,20 +42,17 @@ deps = pyreadline pytest pytest-xdist - six commands = py.test -v -n2 [testenv:py36] deps = codecov - mock pyparsing pyperclip pytest pytest-cov pytest-forked pytest-xdist - six wcwidth commands = py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing --forked @@ -97,24 +60,24 @@ commands = [testenv:py36-win] deps = - mock + codecov pyparsing pyperclip pyreadline pytest + pytest-cov pytest-xdist - six -commands = py.test -v -n2 +commands = + py.test {posargs: -n 2} --cov=cmd2 --cov-report=term-missing + codecov [testenv:py37] deps = - mock pyparsing pyperclip pytest pytest-forked pytest-xdist - six wcwidth commands = py.test -v -n2 --forked |