Skip to content

Commit

Permalink
Run 'make clean' to delete ruff's cache (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
seisman authored Nov 20, 2023
1 parent f69ec86 commit 50baef2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,8 @@ clean:
find . -name "*.pyc" -exec rm -v {} +
find . -name "*~" -exec rm -v {} +
find . -type d -name "__pycache__" -exec rm -rv {} +
rm -rvf build dist .eggs MANIFEST .coverage .cache .pytest_cache htmlcov coverage.xml
rm -rvf build dist .eggs MANIFEST .coverage htmlcov coverage.xml
rm -rvf .cache .pytest_cache .ruff_cache
rm -rvf $(TESTDIR)
rm -rvf baseline
rm -rvf result_images
Expand Down

0 comments on commit 50baef2

Please sign in to comment.