[test] disable e2e tests cache

This commit is contained in:
Aleksandr Soloshenko 2024-11-25 17:23:05 +07:00 committed by Aleksandr
parent 7c4b4da7ba
commit 8896245762
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)