This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v2-11-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-11-test by this push:
new 3f7e780ce7e Hard-code fab provider tests
3f7e780ce7e is described below
commit 3f7e780ce7e79c85cc92a7f51807670208cd6848
Author: Jarek Potiuk <[email protected]>
AuthorDate: Tue Mar 31 11:10:25 2026 +0200
Hard-code fab provider tests
---
scripts/ci/testing/run_unit_tests.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/ci/testing/run_unit_tests.sh
b/scripts/ci/testing/run_unit_tests.sh
index c6f65f558ac..ad3683bb9bc 100755
--- a/scripts/ci/testing/run_unit_tests.sh
+++ b/scripts/ci/testing/run_unit_tests.sh
@@ -82,12 +82,12 @@ function providers_tests() {
set +e
if [[ "${TEST_SCOPE}" == "DB" ]]; then
set -x
- breeze testing providers-tests --run-in-parallel --run-db-tests-only
+ breeze testing providers-tests --run-db-tests-only --test-type
"Providers[fab]"
RESULT=$?
set +x
elif [[ "${TEST_SCOPE}" == "Non-DB" ]]; then
set -x
- breeze testing providers-tests --use-xdist --skip-db-tests
--no-db-cleanup --backend none
+ breeze testing providers-tests --use-xdist --skip-db-tests
--no-db-cleanup --backend none --parallel-test-types "Providers[fab]"
RESULT=$?
set +x
elif [[ "${TEST_SCOPE}" == "All" ]]; then