From 79fa47fc2fa8a2e4b9d961c6c386e4ea23f2ed6d Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 28 Jan 2026 17:49:31 +1100 Subject: [PATCH] Allow specifying MODULE in make test-core for convenience --- src/bonsai/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bonsai/Makefile b/src/bonsai/Makefile index 5b484f9942..68433466bd 100644 --- a/src/bonsai/Makefile +++ b/src/bonsai/Makefile @@ -336,7 +336,11 @@ test: .PHONY: test-core test-core: +ifndef MODULE pytest -p no:pytest-blender test/core +else + pytest -p no:pytest-blender test/core/test_${MODULE}.py +endif .PHONY: test-bim test-bim: