Skip to content

Commit 01b6f23

Browse files
authored
fix(python): install testutils from pypi (#503)
https://pypi.org/project/google-cloud-testutils/
1 parent 716f741 commit 01b6f23

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

synthtool/gcp/templates/python_library/noxfile.py.j2

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ def system(session):
117117

118118
# Install all test dependencies, then install this package into the
119119
# virtualenv's dist-packages.
120-
session.install("mock", "pytest", {% for d in system_test_external_dependencies %}"{{d}}"{% if not loop.last %},{% endif %}{% endfor %})
121-
session.install("git+https://github.com/googleapis/python-test-utils")
120+
session.install("mock", "pytest", "google-cloud-testutils", {% for d in system_test_external_dependencies %}"{{d}}"{% if not loop.last %},{% endif %}{% endfor %})
122121

123122
{%- if system_test_local_dependencies %}
124123
session.install("-e", {% for d in system_test_local_dependencies %}"{{d}}"{% if not loop.last %},{% endif %}{% endfor %})

0 commit comments

Comments
 (0)