From cd27f2850ee26d69a5a521e008cedd33b657d3fc Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Wed, 10 Mar 2021 15:00:54 +0200 Subject: [PATCH] Delete the stability tests when doing code coverage (#1594) --- .github/workflows/go.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8e646837f..accb239d2 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -63,6 +63,9 @@ jobs: with: go-version: 1.16 + - name: Delete the stability tests from coverage + run: rm -r stability-tests + - name: Create coverage file run: go test -v -covermode=atomic -coverpkg=./... -coverprofile coverage.txt ./...