You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ji...@apache.org on 2021/04/21 23:44:19 UTC

[helix] branch master updated: Add -fae for continue testing on partial tests failure.

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

jiajunwang 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 a1a6cb0  Add -fae for continue testing on partial tests failure.
a1a6cb0 is described below

commit a1a6cb079f534af3403b5a5e99c7bbdedc5c28e2
Author: Jiajun Wang <jj...@linkedin.com>
AuthorDate: Wed Apr 21 16:43:26 2021 -0700

    Add -fae for continue testing on partial tests failure.
---
 .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 ee834c4..dbc4af3 100644
--- a/.github/workflows/Helix-CI.yml
+++ b/.github/workflows/Helix-CI.yml
@@ -19,7 +19,7 @@ jobs:
     - name: Build with Maven
       run: mvn clean install -Dmaven.test.skip.exec=true
     - name: Run All Tests
-      run: mvn -q test
+      run: mvn -q -fae test
     - name: Upload to Codecov
       if: ${{ github.event_name == 'push' }}
       run: bash <(curl -s https://codecov.io/bash)
diff --git a/.github/workflows/Helix-PR-CI.yml b/.github/workflows/Helix-PR-CI.yml
index 7409acd..3249d43 100644
--- a/.github/workflows/Helix-PR-CI.yml
+++ b/.github/workflows/Helix-PR-CI.yml
@@ -17,4 +17,4 @@ jobs:
     - name: Build with Maven
       run: mvn clean install -Dmaven.test.skip.exec=true
     - name: Run All Tests
-      run: mvn -q test
+      run: mvn -q -fae test