File tree Expand file tree Collapse file tree
packages/gapic-generator/tests/integration/goldens/redis_selective Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -485,7 +485,8 @@ def prerelease_deps(session, protobuf_implementation):
485485 ]
486486
487487 # Install dependencies specified in `testing/constraints-X.txt`.
488- session .install (* constraints_deps )
488+ if constraints_deps :
489+ session .install (* constraints_deps )
489490
490491 # Note: If a dependency is added to the `prerel_deps` list,
491492 # the `core_dependencies_from_source` list in the `core_deps_from_source`
@@ -578,7 +579,8 @@ def core_deps_from_source(session, protobuf_implementation):
578579 ]
579580
580581 # Install dependencies specified in `testing/constraints-X.txt`.
581- session .install (* constraints_deps )
582+ if constraints_deps :
583+ session .install (* constraints_deps )
582584
583585 # TODO(https://github.com/googleapis/gapic-generator-python/issues/2358): `grpcio` and
584586 # `grpcio-status` should be added to the list below so that they are installed from source,
You can’t perform that action at this time.
0 commit comments