diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 543b4be..7b6939f 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -48,7 +48,7 @@ jobs: # step 4: run test - name: Run e2e tests - run: cd test/e2e && go test . + run: cd test/e2e && go test -count=1 . build: name: Build diff --git a/Makefile b/Makefile index 4bf70d6..96dba85 100644 --- a/Makefile +++ b/Makefile @@ -33,7 +33,7 @@ lint: test: go test -race -coverprofile=coverage.out -covermode=atomic ./... - cd test/e2e && go test . + cd test/e2e && go test -count=1 . build: go build -o tmp/$(project_name) ./cmd/$(project_name)