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/07/21 14:28:12 UTC

[airflow] 09/22: Add Kubernetes-related files to trigger helm tests (#24950)

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

potiuk pushed a commit to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit c39ffb4a7928ac09bf023047095e311b15b7fd68
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Mon Jul 11 15:30:52 2022 +0200

    Add Kubernetes-related files to trigger helm tests (#24950)
    
    So far, when Kubernetes-related files ware changed, the Helm chart
    were not run - which lead to some of the tests failing after merge.
    This change adds kubernetes related files in airlfow to list of
    files that trigger Helm tets.
    
    (cherry picked from commit 7fc5e0b24a8938906ad23eaa1262c9fb74ee2df1)
---
 dev/breeze/src/airflow_breeze/utils/selective_checks.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev/breeze/src/airflow_breeze/utils/selective_checks.py b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
index 0d774c6c19..d3277e7b7e 100644
--- a/dev/breeze/src/airflow_breeze/utils/selective_checks.py
+++ b/dev/breeze/src/airflow_breeze/utils/selective_checks.py
@@ -122,6 +122,8 @@ CI_FILE_GROUP_MATCHES = HashableDict(
         ],
         FileGroupForCi.HELM_FILES: [
             "^chart",
+            "^airflow/kubernetes",
+            "^tests/kubernetes",
         ],
         FileGroupForCi.SETUP_FILES: [
             r"^pyproject.toml",