Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion scripts/ci/testing/ci_run_airflow_testing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ function run_all_test_types_in_parallel() {
# Those tests will run in `main` anyway.
if [[ ${test_types_to_run} == *"Providers"* ]]; then
echo "${COLOR_YELLOW}Remove Providers from tests_types_to_run and skip running them altogether (mysql/mssql case).${COLOR_RESET}"
test_types_to_run="${test_types_to_run//Providers/}"
# shellcheck disable=SC2001
test_types_to_run=$(echo "${test_types_to_run}" | sed 's/Providers[^ ]* *//')
fi
fi
fi
Expand Down