Files
cozystack/hack/Makefile
2024-10-15 14:56:11 +03:00

17 lines
290 B
Makefile

.PHONY: test clean help
SCRIPT=./e2e.applications.sh
PRECHECKS=./pre-checks.sh
help:
@echo "Usage: make {test|clean}"
@echo " test - Run the end-to-end tests."
@echo " clean - Clean up resources."
test:
@bash $(PRECHECKS) test
@bash $(SCRIPT) test
clean:
@bash $(SCRIPT) clean