Skip to content

Commit

Permalink
add changes to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MSalopek committed Feb 28, 2023
1 parent 19ff7ee commit ad9dc09
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/...
Expand Down

0 comments on commit ad9dc09

Please sign in to comment.