diff --git a/tox.ini b/tox.ini index 6289212f..e5023b21 100644 --- a/tox.ini +++ b/tox.ini @@ -1,40 +1,35 @@ [tox] envlist=flake8,mypy,py3 -[testenv:py3] +[testenv] deps = # the dependency below is needed for now as a workaround for # https://github.com/pypa/pip/issues/6239 swh.core[http] >= 0.0.75 .[testing] + dev: ipdb pytest-cov pifpaf commands = - pifpaf run postgresql -- pytest --cov {envsitepackagesdir}/swh/deposit --cov-branch \ - {envsitepackagesdir}/swh/deposit \ - {posargs} - -[testenv:py3-dev] -deps = - swh.core[http] >= 0.0.75 - .[testing] - ipdb -commands = - pytest {envsitepackagesdir}/swh/deposit/ {posargs} + pifpaf run postgresql -- \ + pytest \ + !dev: --cov {envsitepackagesdir}/swh/deposit --cov-branch \ + {envsitepackagesdir}/swh/deposit \ + {posargs} [testenv:flake8] skip_install = true deps = flake8 commands = {envpython} -m flake8 \ --exclude=.tox,.git,__pycache__,.tox,.eggs,*.egg,swh/deposit/migrations [testenv:mypy] setenv = DJANGO_SETTINGS_MODULE = swh.deposit.settings.testing skip_install = true deps = .[testing] mypy commands = mypy swh