Skip to content

Commit

Permalink
fix: installs test_utils from its common repo (#480)
Browse files Browse the repository at this point in the history
  • Loading branch information
danoscarmike authored Apr 9, 2020
1 parent 74ce986 commit 6f32150
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion synthtool/gcp/templates/python_library/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ def system(session):
# Install all test dependencies, then install this package into the
# virtualenv's dist-packages.
session.install("mock", "pytest", {% for d in system_test_external_dependencies %}"{{d}}"{% if not loop.last %},{% endif %}{% endfor %})

session.install("git+git@github.com:googleapis/python-test-utils")

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

0 comments on commit 6f32150

Please sign in to comment.