Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions packages/google-cloud-storage/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,9 @@ def prerelease_deps(session, protobuf_implementation):
"Credentials must be set via environment variable GOOGLE_APPLICATION_CREDENTIALS"
)

# Install all test dependencies
session.install("mock", "pytest", "pytest-cov", "brotli")
# Install dependencies for the unit test environment
unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
session.install(*unit_deps_all)

# Install dependencies needed for system tests
session.install(
Expand All @@ -583,7 +584,8 @@ def prerelease_deps(session, protobuf_implementation):

prerel_deps = [
"google-api-core",
"google-auth",
# Exclude google-auth 3.0.0.dev0 which was yanked
"google-auth!=3.0.0.dev0",
"google-cloud-core",
"google-crc32c",
"google-resumable-media",
Expand Down Expand Up @@ -614,6 +616,7 @@ def prerelease_deps(session, protobuf_implementation):
# Remaining dependencies
other_deps = [
"requests",
"pyopenssl"
]
session.install(*other_deps)

Expand Down
Loading