Skip to content

Commit

Permalink
chore(python): fix formatting issue in noxfile.py.j2 (#1237)
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea authored Oct 7, 2021
1 parent 4fc6918 commit d730883
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion synthtool/gcp/templates/python_library/noxfile.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ def default(session):
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
)
session.install("mock", "asyncmock", "pytest", "pytest-cov", "pytest-asyncio", "-c", constraints_path)
{% for d in unit_test_external_dependencies %}session.install("{{d}}", "-c", constraints_path){% endfor %}
{%- for d in unit_test_external_dependencies -%}
session.install("{{d}}", "-c", constraints_path)
{% endfor %}
{% for dependency in unit_test_local_dependencies %}session.install("-e", "{{dependency}}", "-c", constraints_path)
{% endfor %}
{% for dependency in unit_test_dependencies %}session.install("-e", "{{dependency}}", "-c", constraints_path){% endfor %}
Expand Down

0 comments on commit d730883

Please sign in to comment.