File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 18
18
@echo " check run code style and quality checks (black, blackdoc and flake8)"
19
19
@echo " lint run pylint for a deeper (and slower) quality check"
20
20
@echo " clean clean up build and generated files"
21
+ @echo " distclean clean up build and generated files, including project metadata files"
21
22
@echo " "
22
23
23
24
install :
@@ -47,10 +48,13 @@ lint:
47
48
pylint $(LINT_FILES )
48
49
49
50
clean :
50
- find . -name " *.pyc" -exec rm -v {} \;
51
- find . -name " *~" -exec rm -v {} \;
51
+ find . -name " *.pyc" -exec rm -v {} +
52
+ find . -name " *~" -exec rm -v {} +
52
53
find . -type d -name " __pycache__" -exec rm -rv {} +
53
- rm -rvf build dist MANIFEST * .egg-info . coverage .cache htmlcov coverage.xml
54
+ rm -rvf build dist MANIFEST . coverage .cache .pytest_cache htmlcov coverage.xml
54
55
rm -rvf $(TESTDIR )
55
56
rm -rvf baseline
56
57
rm -rvf result_images
58
+
59
+ distclean : clean
60
+ rm -r * .egg-info
You can’t perform that action at this time.
0 commit comments