Skip to content

Commit

Permalink
test: use main branch of python-bigquery and python-bigquery-storage …
Browse files Browse the repository at this point in the history
…for pre-release tests (#857)
  • Loading branch information
Linchin authored Jan 21, 2025
1 parent 67df733 commit 912b615
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,6 @@ def prerelease(session):
"--pre",
"--upgrade",
"google-api-core",
"google-cloud-bigquery",
"google-cloud-bigquery-storage",
"google-cloud-core",
"google-resumable-media",
# Exclude version 1.49.0rc1 which has a known issue. See https://github.com/grpc/grpc/pull/30642
Expand All @@ -344,6 +342,14 @@ def prerelease(session):
"pytest-cov",
)

# Install python-bigquery and python-bigquery-storage from main to detect
# any potential breaking changes. For context, see:
# https://github.com/googleapis/python-bigquery-pandas/issues/854
session.install(
"https://github.com/googleapis/python-bigquery/archive/main.zip",
"https://github.com/googleapis/python-bigquery-storage/archive/main.zip",
)

# Because we test minimum dependency versions on the minimum Python
# version, the first version we test with in the unit tests sessions has a
# constraints file containing all dependencies and extras.
Expand Down

0 comments on commit 912b615

Please sign in to comment.