You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/11 22:34:46 UTC

[airflow] 05/32: Tests should also be triggered when there is just setup.py change (#9690)

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

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 0718977d8b15754eec0a9bafbd8a44e556b1d5bb
Author: Jarek Potiuk <ja...@polidea.com>
AuthorDate: Mon Jul 6 20:41:35 2020 +0200

    Tests should also be triggered when there is just setup.py change (#9690)
    
    So far tests were not triggered when only requirements changed,
    but this is quite needed in fact.
    
    (cherry picked from commit 72abf824cef6a1d82ecf882756206f02ed6a6864)
---
 .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 029c341..134bc1f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -113,7 +113,7 @@ jobs:
         run: |
           set +e
           ./scripts/ci/ci_count_changed_files.sh ${GITHUB_SHA} \
-              '^airflow|.github/workflows/|^Dockerfile|^scripts|^chart'
+              '^airflow|.github/workflows/|^Dockerfile|^scripts|^chart|^setup.py|^requirements|^tests|^kubernetes_tests'
           echo "::set-output name=count::$?"
         id: trigger-tests