From 2133b1892906b5a870e7db71ac5a6be4ffd56a09 Mon Sep 17 00:00:00 2001 From: Rockachopa Date: Sun, 26 Apr 2026 20:47:09 -0400 Subject: [PATCH] fix: correct Makefile syntax (tabs for recipe lines) --- Makefile | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 96b39d5..b40d15e 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,13 @@ - 1|.PHONY: test - 2| - 3|test: - 4| python3 -m pytest tests/test_ci_config.py scripts/test_*.py -v - 5| +.PHONY: test + +test: + python3 -m pytest tests/test_ci_config.py scripts/test_*.py -v + # Connector targets +.PHONY: test-connectors test-connectors: python3 -m pytest tests/test_connectors.py -v -run-connector: - python3 scripts/run_connector.py $(CONNECTOR) --source $(SOURCE) --output $(OUTPUT) [--limit $(LIMIT)] [--dry-run] - +.PHONY: connectors-help connectors-help: python3 scripts/run_connector.py --help