Skip to content

Commit

Permalink
Makefile: also clean pyc files
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanlukasczyk committed Mar 16, 2022
1 parent fe472d7 commit ace7518
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ clean_build:
rm -rf docs/_build
find . -name pynguin-report -type d | xargs rm -rf {};
find . -name ".coverage*" -type f | xargs rm -rf {};
find . -name "*.pyc" -type f | xargs rm -rf {};

.PHONY: clean
clean: clean_build clean_docker

0 comments on commit ace7518

Please sign in to comment.