You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by el...@apache.org on 2021/11/22 19:41:08 UTC

[superset] 10/12: ci: fix broken test skips (#17005)

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

elizabeth pushed a commit to branch 1.4
in repository https://gitbox.apache.org/repos/asf/superset.git

commit c4b57e6b3e48af18374f95198c70227a921920de
Author: Ville Brofeldt <33...@users.noreply.github.com>
AuthorDate: Fri Oct 8 08:13:01 2021 +0200

    ci: fix broken test skips (#17005)
    
    (cherry picked from commit 9e980b6f2b309d7d80d81a3465e4297d2f97efd9)
---
 .github/workflows/superset-frontend.yml    | 1 +
 .github/workflows/superset-python-misc.yml | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.github/workflows/superset-frontend.yml b/.github/workflows/superset-frontend.yml
index 4f37c1f..afdcb88 100644
--- a/.github/workflows/superset-frontend.yml
+++ b/.github/workflows/superset-frontend.yml
@@ -28,6 +28,7 @@ jobs:
         continue-on-error: true
         run: ./scripts/ci_check_no_file_changes.sh frontend
       - name: Setup Node.js
+        if: steps.check.outcome == 'failure'
         uses: actions/setup-node@v2
         with:
           node-version:  '16'
diff --git a/.github/workflows/superset-python-misc.yml b/.github/workflows/superset-python-misc.yml
index 9804ef2..4a38a95 100644
--- a/.github/workflows/superset-python-misc.yml
+++ b/.github/workflows/superset-python-misc.yml
@@ -29,6 +29,7 @@ jobs:
         continue-on-error: true
         run: ./scripts/ci_check_no_file_changes.sh python
       - name: Setup Python
+        if: steps.check.outcome == 'failure'
         uses: actions/setup-python@v2
         with:
           python-version: ${{ matrix.python-version }}