summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-10-19 07:12:17 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-10-19 07:12:17 -0400
commit6bea0ea1c75981d13e5e01c18bbab34b891757b3 (patch)
tree5a203df5b507d4572b12648b5268a10ea582e181
parenta28cd71722750230a6c13794fa47dd54ccb6f224 (diff)
downloadpython-coveragepy-git-6bea0ea1c75981d13e5e01c18bbab34b891757b3.tar.gz
Clean __pycache__ before .pyc (a little faster?)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 045996a4..e6ea9a30 100644
--- a/Makefile
+++ b/Makefile
@@ -13,11 +13,11 @@ clean:
-PYTHONPATH=. python tests/test_farm.py clean
-rm -rf tests/farm/*/out
-rm -rf build coverage.egg-info dist htmlcov
+ -rm -rf __pycache__ */__pycache__ */*/__pycache__ */*/*/__pycache__ */*/*/*/__pycache__ */*/*/*/*/__pycache__
-rm -f *.pyc */*.pyc */*/*.pyc */*/*/*.pyc */*/*/*/*.pyc */*/*/*/*/*.pyc
-rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo
-rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak
-rm -f *$$py.class */*$$py.class */*/*$$py.class */*/*/*$$py.class */*/*/*/*$$py.class */*/*/*/*/*$$py.class
- -rm -rf __pycache__ */__pycache__ */*/__pycache__ */*/*/__pycache__ */*/*/*/__pycache__ */*/*/*/*/__pycache__
-rm -f coverage/*,cover
-rm -f MANIFEST
-rm -f .coverage .coverage.* coverage.xml .metacov*