mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-22 15:41:47 +00:00
9 lines
208 B
Makefile
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"
|