Add clean Tox target (run tox -e clean)

This commit is contained in:
Peter Bittner 2020-12-04 00:18:09 +01:00
parent 41b8c243d4
commit 44e642c34b

View file

@ -67,6 +67,15 @@ commands =
{envpython} setup.py -q sdist bdist_wheel
twine check dist/*
[testenv:clean]
description = Clean up bytecode and build artifacts
deps = pyclean
commands =
pyclean -v {toxinidir}
rm -rf .tox/ build/ dist/ django_analytical.egg-info/ .coverage coverage.xml
whitelist_externals =
rm
[bandit]
exclude = .cache,.git,.tox,build,dist,docs,tests
targets = .