We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c4b4da commit 8896245Copy full SHA for 8896245
.github/workflows/docker-publish.yml
@@ -48,7 +48,7 @@ jobs:
48
49
# step 4: run test
50
- name: Run e2e tests
51
- run: cd test/e2e && go test .
+ run: cd test/e2e && go test -count=1 .
52
53
build:
54
name: Build
Makefile
@@ -33,7 +33,7 @@ lint:
33
34
test:
35
go test -race -coverprofile=coverage.out -covermode=atomic ./...
36
- cd test/e2e && go test .
+ cd test/e2e && go test -count=1 .
37
38
39
go build -o tmp/$(project_name) ./cmd/$(project_name)
0 commit comments