Add clean for coverage and *~ files
This commit is contained in:
parent
63621bd26e
commit
d5920ba8ce
1 changed files with 6 additions and 2 deletions
8
Makefile
8
Makefile
|
@ -20,10 +20,14 @@ clean_tox:
|
||||||
rm -rf .tox
|
rm -rf .tox
|
||||||
clean_test_venv:
|
clean_test_venv:
|
||||||
rm -rf test_venv
|
rm -rf test_venv
|
||||||
|
clean_coverage:
|
||||||
|
rm -rf coverage.xml .coverage htmlcov
|
||||||
|
clean_tild_backup:
|
||||||
|
find ./ -name '*~' -delete
|
||||||
|
|
||||||
clean: clean_pyc clean_build
|
clean: clean_pyc clean_build clean_coverage clean_tild_backup
|
||||||
|
|
||||||
clean_all: clean_pyc clean_build clean_tox clean_test_venv
|
clean_all: clean clean_tox clean_test_venv
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
python setup.py sdist
|
python setup.py sdist
|
||||||
|
|
Loading…
Reference in a new issue