Added partial test and skip-build flag

This commit is contained in:
2025-07-16 22:16:22 +02:00
parent 3b2190f7ab
commit f4d1f2a303
2 changed files with 19 additions and 7 deletions

View File

@@ -61,8 +61,11 @@ build: clean dockerignore
install: build
@echo "⚙️ Install complete."
test: build
partial-test:
@echo "🧪 Running Python tests…"
python -m unittest discover -s tests
@echo "📑 Checking Ansible syntax…"
ansible-playbook playbook.yml --syntax-check
test: build partial-test
@echo "Full test with build terminated."