Skip to content

Commit 3ff047e

Browse files
committed
fix: make sure e2e tests are not cached
Signed-off-by: Bence Csati <[email protected]>
1 parent 14cf6ee commit 3ff047e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ test-e2e-nodeps:
238238
KIND_IMAGE="$(KIND_IMAGE)" \
239239
PROJECT_DIR="$(PWD)" \
240240
E2E_TEST_COV_DIR=${TEST_COV_DIR} \
241-
go test -v -timeout ${E2E_TEST_TIMEOUT} ./${E2E_TEST}/...
241+
go test -count=1 -v -timeout ${E2E_TEST_TIMEOUT} ./${E2E_TEST}/...
242242
go tool covdata textfmt -i=${TEST_COV_DIR}/covdatafiles -o ${TEST_COV_DIR}/coverage_e2e.out
243243
@echo "--- E2E test coverage report"
244244
go tool covdata percent -i=${TEST_COV_DIR}/covdatafiles

0 commit comments

Comments
 (0)