From c463791e219f7320c06c039e239e678e1957c608 Mon Sep 17 00:00:00 2001 From: Joachim Bauch Date: Fri, 8 Jul 2022 08:33:57 +0200 Subject: [PATCH] CI: Don't retry tests in case of failures. Flaky tests should be fixed instead. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e61ebec..f22abac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -63,11 +63,11 @@ jobs: - name: Run tests run: | - make test || make test + make test - name: Generate coverage report run: | - make cover || make cover + make cover echo "GOROOT=$(go env GOROOT)" >> $GITHUB_ENV - name: Convert coverage to lcov