We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edc0423 commit 9bfa67fCopy full SHA for 9bfa67f
1 file changed
ci/run_conditional_tests.sh
@@ -104,6 +104,13 @@ for subdir in ${subdirs[@]}; do
104
should_test=true
105
fi
106
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
+
114
echo "running test in ${d}"
115
pushd ${d}
116
# Temporarily allow failure.
0 commit comments