diff --git a/Makefile b/Makefile index ae716ad663..f190019e81 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ install: go.sum # run all tests: unit, integration, diff, and E2E test: - go test ./... && go run ./tests/e2e/... + go test ./... && go run ./e2e/... # run all unit tests test-unit: @@ -23,7 +23,7 @@ test-short: # run E2E tests test-e2e: - go run ./tests/e2e/... + go run ./e2e/... # run difference tests test-diff: @@ -31,46 +31,46 @@ test-diff: # run only happy path E2E tests test-e2e-short: - go run ./tests/e2e/... --happy-path-only + go run ./e2e/... --happy-path-only # run full E2E tests in sequence (including multiconsumer) test-e2e-multi-consumer: - go run ./tests/e2e/... --include-multi-consumer + go run ./e2e/... --include-multi-consumer # run full E2E tests in parallel (including multiconsumer) test-e2e-parallel: - go run ./tests/e2e/... --include-multi-consumer --parallel + go run ./e2e/... --include-multi-consumer --parallel # run full E2E tests in sequence (including multiconsumer) using latest tagged gaia test-gaia-e2e: - go run ./tests/e2e/... --include-multi-consumer --use-gaia + go run ./e2e/... --include-multi-consumer --use-gaia # run only happy path E2E tests using latest tagged gaia test-gaia-e2e-short: - go run ./tests/e2e/... --happy-path-only --use-gaia + go run ./e2e/... --happy-path-only --use-gaia # run full E2E tests in parallel (including multiconsumer) using latest tagged gaia test-gaia-e2e-parallel: - go run ./tests/e2e/... --include-multi-consumer --parallel --use-gaia + go run ./e2e/... --include-multi-consumer --parallel --use-gaia # run full E2E tests in sequence (including multiconsumer) using specific tagged version of gaia # usage: GAIA_TAG=v9.0.0 make test-gaia-e2e-tagged test-gaia-e2e-tagged: - go run ./tests/e2e/... --include-multi-consumer --use-gaia --gaia-tag $(GAIA_TAG) + go run ./e2e/... --include-multi-consumer --use-gaia --gaia-tag $(GAIA_TAG) # run only happy path E2E tests using latest tagged gaia # usage: GAIA_TAG=v9.0.0 make test-gaia-e2e-short-tagged test-gaia-e2e-short-tagged: - go run ./tests/e2e/... --happy-path-only --use-gaia --gaia-tag $(GAIA_TAG) + go run ./e2e/... --happy-path-only --use-gaia --gaia-tag $(GAIA_TAG) # run full E2E tests in parallel (including multiconsumer) using specific tagged version of gaia # usage: GAIA_TAG=v9.0.0 make test-gaia-e2e-parallel-tagged test-gaia-e2e-parallel-tagged: - go run ./tests/e2e/... --include-multi-consumer --parallel --use-gaia --gaia-tag $(GAIA_TAG) + go run ./e2e/... --include-multi-consumer --parallel --use-gaia --gaia-tag $(GAIA_TAG) # run all tests with caching disabled test-no-cache: - go test ./... -count=1 && go run ./tests/e2e/... + go test ./... -count=1 && go run ./e2e/... ############################################################################### ### Linting ###