Skip to content

Commit 912b615

Browse files
authored
test: use main branch of python-bigquery and python-bigquery-storage for pre-release tests (#857)
1 parent 67df733 commit 912b615

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

noxfile.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -324,8 +324,6 @@ def prerelease(session):
324324
"--pre",
325325
"--upgrade",
326326
"google-api-core",
327-
"google-cloud-bigquery",
328-
"google-cloud-bigquery-storage",
329327
"google-cloud-core",
330328
"google-resumable-media",
331329
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
@@ -344,6 +342,14 @@ def prerelease(session):
344342
"pytest-cov",
345343
)
346344

345+
# Install python-bigquery and python-bigquery-storage from main to detect
346+
# any potential breaking changes. For context, see:
347+
# https://github.com/googleapis/python-bigquery-pandas/issues/854
348+
session.install(
349+
"https://github.com/googleapis/python-bigquery/archive/main.zip",
350+
"https://github.com/googleapis/python-bigquery-storage/archive/main.zip",
351+
)
352+
347353
# Because we test minimum dependency versions on the minimum Python
348354
# version, the first version we test with in the unit tests sessions has a
349355
# constraints file containing all dependencies and extras.

0 commit comments

Comments
 (0)