From 3a4a7a754b6bd287d6b3cb8cb2f4b551b643ea78 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 7 Feb 2026 17:42:07 +0100 Subject: [PATCH] Add target for new tests in the Makefile --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e190c688..dfa1b63a 100644 --- a/Makefile +++ b/Makefile @@ -99,6 +99,9 @@ test: ## Run All unit tests test-core: ## Run Core unit tests $(UV_RUN) run pytest tests/test_core.py +test-plugins: ## Run Plugins unit tests + $(UV_RUN) run pytest tests/test_plugin_*.py + test-api: ## Run API unit tests $(UV_RUN) run pytest tests/test_api.py