We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 559f774 commit b3135f7Copy full SHA for b3135f7
packages/google-cloud-core/nox.py
@@ -32,14 +32,15 @@ def default(session):
32
Python corresponding to the ``nox`` binary the ``PATH`` can
33
run the tests.
34
"""
35
- # Install all test dependencies, then install this package in-place.
+ # Install all test dependencies, then install local packages in-place.
36
session.install(
37
'mock',
38
'pytest',
39
'pytest-cov',
40
'grpcio >= 1.0.2',
41
- *LOCAL_DEPS
42
)
+ for local_dep in LOCAL_DEPS:
43
+ session.install('-e', local_dep)
44
session.install('-e', '.')
45
46
# Run py.test against the unit tests.
0 commit comments