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 656783f commit 3fd7bd7Copy full SHA for 3fd7bd7
packages/google-cloud-bigquery-storage/noxfile.py
@@ -245,6 +245,13 @@ def unit(session, protobuf_implementation):
245
if protobuf_implementation == "cpp" and session.python in ("3.11", "3.12", "3.13"):
246
session.skip("cpp implementation is not supported in python 3.11+")
247
248
+ # TODO(https://github.com/googleapis/google-cloud-python/issues/14686):
249
+ # Run tests with 3.14 once this bug is fixed
250
+ if session.python == "3.14":
251
+ session.skip(
252
+ "3.14 is not yet supported. See https://github.com/googleapis/google-cloud-python/issues/14686"
253
+ )
254
+
255
constraints_path = str(
256
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
257
)
0 commit comments