This is an automated email from the ASF dual-hosted git repository. potiuk pushed a commit to branch v2-0-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 9cfdeeedf52cf0122c985a7503f99041b1fa3710 Author: Jarek Potiuk <[email protected]> AuthorDate: Tue Mar 23 03:33:31 2021 +0100 Disable Providers tests for v2-0-test branch --- scripts/ci/selective_ci_checks.sh | 16 ++++++++-------- scripts/in_container/entrypoint_ci.sh | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/ci/selective_ci_checks.sh b/scripts/ci/selective_ci_checks.sh index e1ca0be..5c8e3c9 100755 --- a/scripts/ci/selective_ci_checks.sh +++ b/scripts/ci/selective_ci_checks.sh @@ -198,8 +198,8 @@ function set_upgrade_to_newer_dependencies() { initialization::ga_output upgrade-to-newer-dependencies "${@}" } - -ALL_TESTS="Always API Core Other CLI Providers WWW Integration" +# Providers tests are disabled in v2-0-test branch providers are released from master +ALL_TESTS="Always API Core Other CLI WWW Integration" readonly ALL_TESTS function set_outputs_run_everything_and_exit() { @@ -588,12 +588,12 @@ function calculate_test_types_to_run() { SELECTED_TESTS="${SELECTED_TESTS} CLI" kubernetes_tests_needed="true" fi - if [[ ${COUNT_PROVIDERS_CHANGED_FILES} != "0" ]]; then - echo - echo "Adding Providers to selected files as ${COUNT_PROVIDERS_CHANGED_FILES} Provider files changed" - echo - SELECTED_TESTS="${SELECTED_TESTS} Providers" - fi +# if [[ ${COUNT_PROVIDERS_CHANGED_FILES} != "0" ]]; then +# echo +# echo "Adding Providers to selected files as ${COUNT_PROVIDERS_CHANGED_FILES} Provider files changed" +# echo +# SELECTED_TESTS="${SELECTED_TESTS} Providers" +# fi if [[ ${COUNT_WWW_CHANGED_FILES} != "0" ]]; then echo echo "Adding WWW to selected files as ${COUNT_WWW_CHANGED_FILES} WWW files changed" diff --git a/scripts/in_container/entrypoint_ci.sh b/scripts/in_container/entrypoint_ci.sh index 5cb8d99..cc35de1 100755 --- a/scripts/in_container/entrypoint_ci.sh +++ b/scripts/in_container/entrypoint_ci.sh @@ -300,8 +300,8 @@ else SELECTED_TESTS=("${CLI_TESTS[@]}") elif [[ ${TEST_TYPE:=""} == "API" ]]; then SELECTED_TESTS=("${API_TESTS[@]}") - elif [[ ${TEST_TYPE:=""} == "Providers" ]]; then - SELECTED_TESTS=("${PROVIDERS_TESTS[@]}") +# elif [[ ${TEST_TYPE:=""} == "Providers" ]]; then +# SELECTED_TESTS=("${PROVIDERS_TESTS[@]}") elif [[ ${TEST_TYPE:=""} == "Core" ]]; then SELECTED_TESTS=("${CORE_TESTS[@]}") elif [[ ${TEST_TYPE:=""} == "Always" ]]; then
