Skip to content

Commit 8896245

Browse files
committed
[test] disable e2e tests cache
1 parent 7c4b4da commit 8896245

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/docker-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
# step 4: run test
5050
- name: Run e2e tests
51-
run: cd test/e2e && go test .
51+
run: cd test/e2e && go test -count=1 .
5252

5353
build:
5454
name: Build

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ lint:
3333

3434
test:
3535
go test -race -coverprofile=coverage.out -covermode=atomic ./...
36-
cd test/e2e && go test .
36+
cd test/e2e && go test -count=1 .
3737

3838
build:
3939
go build -o tmp/$(project_name) ./cmd/$(project_name)

0 commit comments

Comments
 (0)