Skip to content

Commit 889fb35

Browse files
committed
update post processing
1 parent 20b378c commit 889fb35

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,9 @@ replacements:
4343
"Credentials must be set via environment variable GOOGLE_APPLICATION_CREDENTIALS"
4444
)
4545
46-
# Install all test dependencies
47-
session.install("mock", "pytest", "pytest-cov", "brotli")
46+
# Install dependencies for the unit test environment
47+
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
48+
session.install(*unit_deps_all)
4849
4950
# Install dependencies needed for system tests
5051
session.install(
@@ -59,7 +60,8 @@ replacements:
5960
6061
prerel_deps = [
6162
"google-api-core",
62-
"google-auth",
63+
# Exclude google-auth 3.0.0.dev0 which was yanked
64+
"google-auth!=3.0.0.dev0",
6365
"google-cloud-core",
6466
"google-crc32c",
6567
"google-resumable-media",
@@ -88,9 +90,7 @@ replacements:
8890
f"import {version_namespace}; print({version_namespace}.__version__)",
8991
)
9092
# Remaining dependencies
91-
other_deps = [
92-
"requests",
93-
]
93+
other_deps = ["requests", "pyopenssl"]
9494
session.install(*other_deps)
9595
9696
session.run(

librarian.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3593,7 +3593,6 @@ libraries:
35933593
apis:
35943594
- path: google/storage/v2
35953595
description_override: 'is a durable and highly available object storage service. Google Cloud Storage is almost infinitely scalable and guarantees consistency: when a write succeeds, the latest copy of the object will be returned to any GET, globally.'
3596-
skip_generate: true
35973596
python:
35983597
library_type: GAPIC_MANUAL
35993598
opt_args_by_api:

0 commit comments

Comments
 (0)