From a9ed7ea2e8b1746b6da7c8690f262cf6285ea7b2 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Sun, 2 Jul 2023 12:32:02 +0200 Subject: [PATCH] Update clean command --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 2074806..c6c5974 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ coverage: ## Run tests and report coverage clean: ## Clean up caches and build artifacts @rm -rf .mypy_cache/ @rm -rf .pytest_cache/ + @rm -rf .ruff_cache/ + @rm -rf .venv/ @rm -f .coverage @find . -type f -name '*.py[co]' -delete -or -type d -name __pycache__ -delete