From e59ca168edfaec1987f7c2f5915205a483a0930b Mon Sep 17 00:00:00 2001 From: Komal Desai Date: Fri, 26 May 2023 14:38:44 -0700 Subject: [PATCH] Re-running the failed test is not helping, so reverting --- .github/workflows/Helix-CI.yml | 2 +- .github/workflows/Helix-PR-CI.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Helix-CI.yml b/.github/workflows/Helix-CI.yml index 6890dda4cd..556c079c22 100644 --- a/.github/workflows/Helix-CI.yml +++ b/.github/workflows/Helix-CI.yml @@ -21,7 +21,7 @@ jobs: - name: Build with Maven run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5 - name: Run All Tests - run: mvn -q -fae -Dsurefire.rerunFailingTestsCount=5 test + run: mvn -q -fae test - name: Upload to Codecov run: bash <(curl -s https://codecov.io/bash) if: ${{ github.repository == 'apache/helix' && github.event_name == 'push' && (success() || failure()) }} diff --git a/.github/workflows/Helix-PR-CI.yml b/.github/workflows/Helix-PR-CI.yml index c061c5ecfe..cd59c7aeb0 100644 --- a/.github/workflows/Helix-PR-CI.yml +++ b/.github/workflows/Helix-PR-CI.yml @@ -23,7 +23,7 @@ jobs: - name: Build with Maven run: mvn clean install -Dmaven.test.skip.exec=true -DretryFailedDeploymentCount=5 - name: Run All Tests - run: mvn -q -fae -Dsurefire.rerunFailingTestsCount=5 test + run: mvn -q -fae test - name: Print Tests Results run: .github/scripts/printTestResult.sh if: ${{ success() || failure() }}