Skip to content

Commit 0a94849

Browse files
authored
Avoid broken 'google-common-apis 1.5.4' release. (#6355)
Install api_core dependency in-place in affected packages.
1 parent f13c027 commit 0a94849

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/google-cloud-videointelligence/noxfile.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,16 @@
1818
import nox
1919

2020

21+
LOCAL_DEPS = (
22+
os.path.join('..', 'api_core'),
23+
)
24+
25+
2126
def default(session):
2227
# Install all test dependencies, then install this package in-place.
2328
session.install('pytest')
29+
for local_dep in LOCAL_DEPS:
30+
session.install('-e', local_dep)
2431
session.install('-e', '.')
2532

2633
# Run py.test against the unit tests.

0 commit comments

Comments
 (0)