Skip to content

Commit 33dd6fb

Browse files
committed
fix
1 parent 705d8f6 commit 33dd6fb

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.github/workflows/code-health.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,6 @@ jobs:
379379
- run: go install gotest.tools/gotestsum@latest
380380
- run: make e2e-test-snapshots
381381
env:
382-
DO_NOT_TRACK: 1
383382
TEST_CMD: gotestsum --junitfile e2e-tests.xml --format standard-verbose --
384383
- name: Test Summary
385384
if: always()

Makefile

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -165,11 +165,8 @@ e2e-test: build-debug ## Run E2E tests
165165
$(TEST_CMD) -v -p 1 -parallel $(E2E_PARALLEL) -v -timeout $(E2E_TIMEOUT) -tags="$(E2E_TAGS)" ./test/e2e... $(E2E_EXTRA_ARGS)
166166

167167
.PHONY: e2e-test-snapshots
168-
e2e-test-snapshots: export UPDATE_SNAPSHOTS=false
169-
e2e-test-snapshots: export E2E_SKIP_CLEANUP=true
170-
e2e-test-snapshots: export DO_NOT_TRACK=1
171168
e2e-test-snapshots: build-debug ## Run E2E tests
172-
$(TEST_CMD) -v -timeout $(E2E_TIMEOUT) -tags="e2eSnap" ./test/e2e... $(E2E_EXTRA_ARGS)
169+
UPDATE_SNAPSHOTS=false E2E_SKIP_CLEANUP=true DO_NOT_TRACK=1 $(TEST_CMD) -v -timeout $(E2E_TIMEOUT) -tags="e2eSnap" ./test/e2e... $(E2E_EXTRA_ARGS)
173170

174171
.PHONY: unit-test
175172
unit-test: build-debug ## Run unit-tests

0 commit comments

Comments
 (0)