Skip to content

Commit

Permalink
chore: install test_utils from common repo (#25)
Browse files Browse the repository at this point in the history
* chore: installs test_utils from common repo

* fix: pins sphinx<3.0.0
  • Loading branch information
danoscarmike authored Apr 16, 2020
1 parent 54d27a5 commit d0dabd1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions packages/google-cloud-automl/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,7 @@ def system(session):
# Install all test dependencies, then install this package into the
# virtualenv's dist-packages.
session.install("mock", "pytest")

session.install("-e", "test_utils")
session.install("git+https://github.com/googleapis/python-test-utils")
session.install("-e", ".[pandas,storage]")

# Run py.test against the system tests.
Expand Down Expand Up @@ -139,7 +138,7 @@ def docs(session):
"""Build the docs for this library."""

session.install("-e", ".[pandas,storage]")
session.install("sphinx", "alabaster", "recommonmark")
session.install("sphinx<3.0.0", "alabaster", "recommonmark")

shutil.rmtree(os.path.join("docs", "_build"), ignore_errors=True)
session.run(
Expand Down

0 comments on commit d0dabd1

Please sign in to comment.