From ace7518a4bab808a4c3e423290808c03e483e990 Mon Sep 17 00:00:00 2001 From: Stephan Lukasczyk Date: Wed, 16 Mar 2022 10:13:53 +0100 Subject: [PATCH] Makefile: also clean pyc files --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index f3dc28808..53edc1271 100644 --- a/Makefile +++ b/Makefile @@ -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