From 08746ec9c4af7190527c097a2f8e9f82599f468f Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Mon, 4 Nov 2024 10:04:22 -0500 Subject: [PATCH] Add a 'make clean' target to clean up venv --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index eb36e11..bda678d 100644 --- a/Makefile +++ b/Makefile @@ -39,3 +39,6 @@ test-unit: $(VENV_TARGET) ## run unit test suite $(HATCH_CMD) test --all --parallel --randomize test-types: $(HATCH_CMD) run types:check + +clean: + rm -rf ${VENV_DIR}