Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd4f448

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

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/google-cloud-texttospeech/noxfile.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,16 @@
1717

1818
import nox
1919

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

2532
# Run py.test against the unit tests.

0 commit comments

Comments
 (0)