diff --git a/Makefile b/Makefile index e0454f6a74..d61dacdd43 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,18 @@ test-integration: test-integration-parallel: go run ./tests/integration/... --include-multi-consumer --parallel +# run full integration tests in sequence (including multiconsumer) using latest tagged gaia +test-gaia-integration: + go run ./tests/integration/... --include-multi-consumer --use-gaia + +# run only happy path integration tests using latest tagged gaia +test-gaia-integration-short: + go run ./tests/integration/... --happy-path-only --use-gaia + +# run full integration tests in parallel (including multiconsumer) using latest tagged gaia +test-gaia-integration-parallel: + go run ./tests/integration/... --include-multi-consumer --parallel --use-gaia + # run all tests with caching disabled test-no-cache: go test ./... -count=1 && go run ./tests/integration/...