From 8c7f2c1c97ea73dc18352eb7d302053ec22781c9 Mon Sep 17 00:00:00 2001 From: saundersp Date: Mon, 22 Jul 2024 22:07:17 +0200 Subject: [PATCH] python/Makefile : fix test target --- python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Makefile b/python/Makefile index 1718c65..842a5f6 100644 --- a/python/Makefile +++ b/python/Makefile @@ -19,7 +19,7 @@ start: $(DATA) | venv check-python-works .PHONY: test test: | venv check-python-works - @sh -c '. ./activate.sh && python toolbox_unit_test.py' + @sh -c '. ./activate.sh && python project_test.py' .PHONY: debug debug: $(DATA) | venv check-python-works check-pudb-works