File tree Expand file tree Collapse file tree
packages/google-cloud-storage Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -567,8 +567,9 @@ def prerelease_deps(session, protobuf_implementation):
567567 "Credentials must be set via environment variable GOOGLE_APPLICATION_CREDENTIALS"
568568 )
569569
570- # Install all test dependencies
571- session .install ("mock" , "pytest" , "pytest-cov" , "brotli" )
570+ # Install dependencies for the unit test environment
571+ unit_deps_all = UNIT_TEST_STANDARD_DEPENDENCIES + UNIT_TEST_EXTERNAL_DEPENDENCIES
572+ session .install (* unit_deps_all )
572573
573574 # Install dependencies needed for system tests
574575 session .install (
@@ -583,7 +584,8 @@ def prerelease_deps(session, protobuf_implementation):
583584
584585 prerel_deps = [
585586 "google-api-core" ,
586- "google-auth" ,
587+ # Exclude google-auth 3.0.0.dev0 which was yanked
588+ "google-auth!=3.0.0.dev0" ,
587589 "google-cloud-core" ,
588590 "google-crc32c" ,
589591 "google-resumable-media" ,
@@ -614,6 +616,7 @@ def prerelease_deps(session, protobuf_implementation):
614616 # Remaining dependencies
615617 other_deps = [
616618 "requests" ,
619+ "pyopenssl"
617620 ]
618621 session .install (* other_deps )
619622
You can’t perform that action at this time.
0 commit comments