Skip to content

Commit 9bfa67f

Browse files
committed
fix(ci): explicitly skip sqlalchemy-bigquery in import-profiler
1 parent edc0423 commit 9bfa67f

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

ci/run_conditional_tests.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,13 @@ for subdir in ${subdirs[@]}; do
104104
should_test=true
105105
fi
106106
if [ "${should_test}" = true ]; then
107+
# Skip sqlalchemy-bigquery for import-profiler check due to python_requires < 3.15
108+
# See: https://github.com/googleapis/google-cloud-python/issues/17786
109+
if [ "${TEST_TYPE}" = "import_profile" ] && [ "${d}" = "packages/sqlalchemy-bigquery/" ]; then
110+
echo "Skipping packages/sqlalchemy-bigquery/ for import_profile: incompatible python version (see issue #17786)"
111+
continue
112+
fi
113+
107114
echo "running test in ${d}"
108115
pushd ${d}
109116
# Temporarily allow failure.

0 commit comments

Comments
 (0)