We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae6bc9a commit f0bd178Copy full SHA for f0bd178
Makefile
@@ -47,7 +47,8 @@ lint:
47
clean:
48
find . -name "*.pyc" -exec rm -v {} \;
49
find . -name "*~" -exec rm -v {} \;
50
- rm -rvf build dist MANIFEST *.egg-info __pycache__ .coverage .cache htmlcov coverage.xml
+ find . -type d -name "__pycache__" -exec rm -rv {} +
51
+ rm -rvf build dist MANIFEST *.egg-info .coverage .cache htmlcov coverage.xml
52
rm -rvf $(TESTDIR)
53
rm -rvf baseline
54
rm -rvf result_images
0 commit comments