From d1a6a40278f5901c2acdf632dc804248deb01d6a Mon Sep 17 00:00:00 2001 From: SimonBoothroyd Date: Sun, 14 Jan 2024 10:38:59 -0500 Subject: [PATCH] Fix test target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 567688c..cf70bd3 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ format: $(CONDA_ENV_RUN) ruff format $(PACKAGE_NAME) test: - $(CONDA_ENV_RUN) pytest -v $(TEST_ARGS) $(PACKAGE_NAME)/*/tests/ + $(CONDA_ENV_RUN) pytest -v $(TEST_ARGS) $(PACKAGE_NAME)/tests/ docs-build: $(CONDA_ENV_RUN) mkdocs build