aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4ed36a4..b4ece5d 100644
--- a/Makefile
+++ b/Makefile
@@ -26,7 +26,9 @@ endif
# Test directories and files
TEST_DIR = tests
-UNIT_TESTS = $(filter-out $(TEST_DIR)/%-integration-test.el, $(wildcard $(TEST_DIR)/*-test.el))
+# Match test-*.el pattern, excluding integration tests
+UNIT_TESTS = $(filter-out $(TEST_DIR)/%integration-test.el, \
+ $(wildcard $(TEST_DIR)/test-*.el))
INTEGRATION_TESTS = $(wildcard $(TEST_DIR)/*-integration-test.el)
ALL_TESTS = $(UNIT_TESTS) $(INTEGRATION_TESTS)