Skip to content

Commit

Permalink
chore: use google-cloud-testutils in noxfile (#101)
Browse files Browse the repository at this point in the history
* chore: use google-cloud-testutils in noxfile

* chore: blacken

Co-authored-by: Peter Lamut <plamut@users.noreply.github.com>
  • Loading branch information
busunkim96 and plamut committed May 13, 2020
1 parent 5fd840e commit 834e2c0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions noxfile.py
Expand Up @@ -32,9 +32,10 @@ def default(session):
run the tests.
"""
# Install all test dependencies, then install local packages in-place.
session.install("mock", "pytest", "pytest-cov", "freezegun")
session.install(
"mock", "pytest", "google-cloud-testutils", "pytest-cov", "freezegun"
)
session.install("grpcio")
session.install("git+https://github.com/googleapis/python-test-utils")

# fastparquet is not included in .[all] because, in general, it's redundant
# with pyarrow. We still want to run some unit tests with fastparquet
Expand Down Expand Up @@ -80,10 +81,9 @@ def system(session):
session.install("--pre", "grpcio")

# Install all test dependencies, then install local packages in place.
session.install("mock", "pytest", "psutil")
session.install("mock", "pytest", "psutil", "google-cloud-testutils")
session.install("google-cloud-storage")
session.install("fastavro")
session.install("git+https://github.com/googleapis/python-test-utils")
session.install("-e", ".[all]")

# IPython does not support Python 2 after version 5.x
Expand Down

0 comments on commit 834e2c0

Please sign in to comment.