Ensure to remove cache files for Tox runs

This commit is contained in:
Luke Murphy 2019-05-19 12:46:32 +02:00
parent 8f882ea3ea
commit 85251cf5d4
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 5 additions and 1 deletions

View File

@ -7,9 +7,13 @@ minversion = 3.10.0
[testenv] [testenv]
usedevelop = True usedevelop = True
deps = -rtest_requirements.txt deps = -rtest_requirements.txt
whitelist_externals = sh whitelist_externals =
find
sh
install_command = install_command =
sh scripts/pip {opts} {packages} sh scripts/pip {opts} {packages}
commands_pre =
find {toxinidir} -type f -not -path '{toxinidir}/.tox/*' -path '*/__pycache__/*' -name '*.py[c|o]' -delete
commands = commands =
pytest pytest
py36,py37: black --check . py36,py37: black --check .