Skip to content

Commit 172302b

Browse files
authored
1 parent 746474f commit 172302b

2 files changed

Lines changed: 11 additions & 2 deletions

File tree

.librarian/generator-input/client-post-processing/bigquery-storage-integration.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ replacements:
2828
"pyarrow",
2929
]
3030
count: 1
31+
- paths: [
32+
packages/google-cloud-bigquery-storage/noxfile.py,
33+
]
34+
before: |
35+
\ # Install all dependencies\n session.install\("-e", "\."\)
36+
after: |
37+
# Install all dependencies
38+
session.install("-e", f".[{','.join(UNIT_TEST_EXTRAS)}]")
39+
count: 2
3140
- paths: [
3241
packages/google-cloud-bigquery-storage/noxfile.py,
3342
]

packages/google-cloud-bigquery-storage/noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ def prerelease_deps(session, protobuf_implementation):
507507
"""
508508

509509
# Install all dependencies
510-
session.install("-e", ".")
510+
session.install("-e", f".[{','.join(UNIT_TEST_EXTRAS)}]")
511511

512512
# Install dependencies for the unit test environment
513513
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
@@ -618,7 +618,7 @@ def core_deps_from_source(session, protobuf_implementation):
618618
"""
619619

620620
# Install all dependencies
621-
session.install("-e", ".")
621+
session.install("-e", f".[{','.join(UNIT_TEST_EXTRAS)}]")
622622

623623
# Install dependencies for the unit test environment
624624
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES

0 commit comments

Comments
 (0)