Skip to content

Commit 8572489

Browse files
committed
dont require deps
1 parent 8904a1b commit 8572489

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/populate_tox/populate_tox.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,10 @@ def _render_python_versions(python_versions: list[Version]) -> str:
347347

348348
def _render_dependencies(integration: str, releases: list[Version]) -> list[str]:
349349
rendered = []
350+
351+
if TEST_SUITE_CONFIG[integration].get("deps") is None:
352+
return rendered
353+
350354
for constraint, deps in TEST_SUITE_CONFIG[integration]["deps"].items():
351355
if constraint == "*":
352356
for dep in deps:

0 commit comments

Comments
 (0)