Skip to content

Commit 75846ff

Browse files
committed
chore(gapic-generator): update noxfile in redis_selective golden
1 parent af490d4 commit 75846ff

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • packages/gapic-generator/tests/integration/goldens/redis_selective

packages/gapic-generator/tests/integration/goldens/redis_selective/noxfile.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)