This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 6fbb235 Fixed an error introduced in selective checks (#11640)
6fbb235 is described below
commit 6fbb235f252ed7442447333c3ae7bd712c6643b6
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Oct 19 00:18:29 2020 +0200
Fixed an error introduced in selective checks (#11640)
A few remnants of earlier version of the script caused occasional
errors. Error introduced in #11541
---
scripts/ci/selective_ci_checks.sh | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/scripts/ci/selective_ci_checks.sh
b/scripts/ci/selective_ci_checks.sh
index b6e8a0a..21d21c7 100755
--- a/scripts/ci/selective_ci_checks.sh
+++ b/scripts/ci/selective_ci_checks.sh
@@ -424,13 +424,13 @@ else
fi
if [[ ${tests_needed} == "true" ]]; then
- run_tests
+ run_tests "true"
else
- skip_running_tests
+ run_tests "false"
fi
if [[ ${kubernetes_tests_needed} == "true" ]]; then
- run_kubernetes_tests
+ run_kubernetes_tests "true"
else
- skip_running_kubernetes_tests
+ run_kubernetes_tests "false"
fi