Skip to content

Commit f1683b0

Browse files
authored
chore: specify relative path for packages in pandas-gbq noxfile.py (#16746)
Use relative paths instead of cloning the entire repo from github and stepping into the sub directory which takes a lot of memory and time and results in the presubmit(s) to timeout.
1 parent 76c67a1 commit f1683b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/pandas-gbq/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ def prerelease_deps(session):
362362
# any potential breaking changes. For context, see:
363363
# https://github.com/googleapis/google-cloud-python/issues/854
364364
session.install(
365-
"git+https://github.com/googleapis/google-cloud-python.git@main#subdirectory=packages/google-cloud-bigquery",
366-
"git+https://github.com/googleapis/google-cloud-python.git@main#subdirectory=packages/google-cloud-bigquery-storage",
365+
"../google-cloud-bigquery",
366+
"../google-cloud-bigquery-storage",
367367
)
368368

369369
# Because we test minimum dependency versions on the minimum Python

0 commit comments

Comments
 (0)