Skip to content

Commit

Permalink
Avoid broken 'google-common-apis 1.5.4' release. (#6355)
Browse files Browse the repository at this point in the history
Install api_core dependency in-place in affected packages.
  • Loading branch information
tseaver authored Oct 31, 2018
1 parent 3d15db1 commit cd4f448
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions packages/google-cloud-texttospeech/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,16 @@

import nox


LOCAL_DEPS = (
os.path.join('..', 'api_core'),
)

def default(session):
# Install all test dependencies, then install this package in-place.
session.install('pytest')
for local_dep in LOCAL_DEPS:
session.install('-e', local_dep)
session.install('-e', '.')

# Run py.test against the unit tests.
Expand Down

0 comments on commit cd4f448

Please sign in to comment.