You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2021/07/26 10:04:46 UTC

[airflow] branch main updated: Do not fail-fast kubernetes tests (#17228)

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

potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 10350aa  Do not fail-fast kubernetes tests (#17228)
10350aa is described below

commit 10350aa80b531bb00e68c8f4d9e71a8fb912223e
Author: Jarek Potiuk <ja...@potiuk.com>
AuthorDate: Mon Jul 26 12:04:30 2021 +0200

    Do not fail-fast kubernetes tests (#17228)
    
    When any of the k8s tests fails, all others were cancelled.
    
    This is not a good idea when we have transient errors because the
    failure might be intermitted and we might want to merge change
    even if one of the K8S tests fail.
---
 .github/workflows/ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index aa61b89..bd8c2d2 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -988,6 +988,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
     strategy:
       matrix:
         executor: [KubernetesExecutor, CeleryExecutor, LocalExecutor]
+      fail-fast: false
     env:
       RUNS_ON: ${{ fromJson(needs.build-info.outputs.runsOn) }}
       BACKEND: postgres
@@ -1043,7 +1044,6 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
     name: Helm Chart Executor Upgrade
     runs-on: ${{ fromJson(needs.build-info.outputs.runsOn) }}
     needs: [build-info, prod-images]
-
     env:
       RUNS_ON: ${{ fromJson(needs.build-info.outputs.runsOn) }}
       BACKEND: postgres