From 88962457624366d58a2d28cab30da99598a6a008 Mon Sep 17 00:00:00 2001 From: Aleksandr Soloshenko Date: Mon, 25 Nov 2024 17:23:05 +0700 Subject: [PATCH] [test] disable e2e tests cache --- .github/workflows/docker-publish.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)