fluxcd-flux2/tests/integration/Makefile
2022-09-29 22:07:19 +01:00

9 lines
208 B
Makefile

GO_TEST_ARGS ?=
PROVIDER_ARG ?=
TEST_TIMEOUT ?= 60m
test:
go test -timeout $(TEST_TIMEOUT) -v ./ $(GO_TEST_ARGS) $(PROVIDER_ARG) --tags=integration
test-azure:
$(MAKE) test PROVIDER_ARG="-provider azure"