From a67e09ae693e265d7f0640d1101b87a36908755d Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 11 Apr 2023 16:37:06 +0200 Subject: [PATCH] Fix 'make test' only tests in 'tests' are pytests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eb3761b..623ee29 100644 --- a/Makefile +++ b/Makefile @@ -61,7 +61,7 @@ install-test: compile pip3 install .[test] test: - pytest + pytest tests # Development