Skip to content
This repository was archived by the owner on Dec 31, 2023. It is now read-only.

chore: install test_utils from common repo #25

Merged
merged 2 commits into from
Apr 16, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions 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