diff --git a/tox.ini b/tox.ini index 132e9045112a130cf9b1798a76ff9b0e6fc6c74d..d05e4160711aaa3011085233aa8e5793e78460e3 100644 --- a/tox.ini +++ b/tox.ini @@ -7,11 +7,12 @@ python = 3.5: lint, py35, integration 3.6: py36, integration -[testenv:clean] -skip_install = True -changedir={toxinidir} -deps = coverage -command = coverage erase +[testenv] +install_command = pip install --process-dependency-links {opts} {packages} +deps = .[test] +commands = + coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest \ + -s {toxinidir}/tests/unit -vv [testenv:integration] ignore_errors = True @@ -36,6 +37,12 @@ skip_install = True deps = .[dev] commands = flake8 sbws scripts tests +[testenv:clean] +skip_install = True +changedir={toxinidir} +deps = coverage +command = coverage erase + [testenv:stats] skip_install = True changedir={toxinidir} @@ -46,13 +53,6 @@ commands= coverage report coverage html -[testenv] -install_command = pip install --process-dependency-links {opts} {packages} -deps = .[test] -commands = - coverage run -a --rcfile={toxinidir}/.coveragerc --source=sbws -m pytest -s {toxinidir}/tests/unit -vv - - [testenv:doc] deps = .[doc] whitelist_externals = make