From 9527e2738a8ed4ef1e3ae914421197a011020ae9 Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Mon, 14 Aug 2023 23:48:48 -0700 Subject: [PATCH] Update Makefile --- Makefile | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Makefile b/Makefile index a933de32..ae91ce5d 100644 --- a/Makefile +++ b/Makefile @@ -25,12 +25,7 @@ test: install ## Run tests .PHONY: clean clean: ## Clean up caches and build artifacts - @rm -rf .pytest_cache/ - @rm -rf .ruff_cache/ - @rm -f .coverage - @rm -rf htmlcov - @find . -type f -name '*.py[co]' -delete -or -type d -name __pycache__ -delete - + @git clean -X -d -f .PHONY: coverage coverage: ## test and coverage