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 2022/06/13 07:08:08 UTC

[airflow] branch main updated: The timeouts for Helm tests are far too small for "full tests" (#24408)

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 7729d1b607 The timeouts for Helm tests are far too small for "full tests" (#24408)
7729d1b607 is described below

commit 7729d1b60775197c321760e9a46f49e8cd3beac1
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Mon Jun 13 09:07:58 2022 +0200

    The timeouts for Helm tests are far too small for "full tests" (#24408)
    
    When "Full tests needed" are run, then the Helm tests take far
    more time because they are running mor combinations of executor
    and Python version. Such tests will timeout now.
    
    This PR increases the timeout
---
 .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 92e7c169a4..0996257cfc 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1427,7 +1427,7 @@ ${{ hashFiles('.pre-commit-config.yaml') }}"
         if: always()
 
   tests-kubernetes:
-    timeout-minutes: 70
+    timeout-minutes: 240
     name: Helm Chart; ${{matrix.executor}}
     runs-on: ${{ fromJson(needs.build-info.outputs.runsOn) }}
     needs: [build-info, wait-for-prod-images]