We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5e4a2d commit e6e76baCopy full SHA for e6e76ba
packages/google-cloud-redis/nox.py
@@ -34,8 +34,10 @@ def default(session):
34
Python corresponding to the ``nox`` binary the ``PATH`` can
35
run the tests.
36
"""
37
- # Install all test dependencies, then install this package in-place.
38
- session.install('mock', 'pytest', 'pytest-cov', *LOCAL_DEPS)
+ # Install all test dependencies, then install local packages in-place.
+ session.install('mock', 'pytest', 'pytest-cov')
39
+ for local_dep in LOCAL_DEPS:
40
+ session.install('-e', local_dep)
41
session.install('-e', '.')
42
43
# Run py.test against the unit tests.
0 commit comments