We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fc6918 commit d730883Copy full SHA for d730883
1 file changed
synthtool/gcp/templates/python_library/noxfile.py.j2
@@ -88,7 +88,9 @@ def default(session):
88
CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
89
)
90
session.install("mock", "asyncmock", "pytest", "pytest-cov", "pytest-asyncio", "-c", constraints_path)
91
- {% for d in unit_test_external_dependencies %}session.install("{{d}}", "-c", constraints_path){% endfor %}
+ {%- for d in unit_test_external_dependencies -%}
92
+ session.install("{{d}}", "-c", constraints_path)
93
+ {% endfor %}
94
{% for dependency in unit_test_local_dependencies %}session.install("-e", "{{dependency}}", "-c", constraints_path)
95
{% endfor %}
96
{% for dependency in unit_test_dependencies %}session.install("-e", "{{dependency}}", "-c", constraints_path){% endfor %}
0 commit comments