From ad9dc0902b1f2f676ba5027f4ed942c2627512bc Mon Sep 17 00:00:00 2001 From: Matija Salopek Date: Tue, 14 Feb 2023 15:10:17 +0100 Subject: [PATCH] add changes to makefile --- Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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/...