You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by qq...@apache.org on 2023/05/28 19:27:49 UTC

[helix] branch master updated: Re-running the failed test is not helping, so reverting (#2511)

This is an automated email from the ASF dual-hosted git repository.

qqu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new cc8a33738 Re-running the failed test is not helping, so reverting (#2511)
cc8a33738 is described below

commit cc8a33738f1132cd7f27e8c91dd05d8942034994
Author: Komal Desai <98...@users.noreply.github.com>
AuthorDate: Sun May 28 12:27:43 2023 -0700

    Re-running the failed test is not helping, so reverting (#2511)
    
    Re-running the failed test is not helping, so reverting the retry added.
---
 .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 6890dda4c..556c079c2 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 c061c5ecf..cd59c7aeb 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() }}