We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1c7843 commit 6c81827Copy full SHA for 6c81827
tests/test_end2end.py
@@ -15,7 +15,12 @@
15
@pytest.mark.parametrize(
16
"model",
17
TEST_MODELS,
18
- ids=[model.get("cli_version", model["name"]) if model.get("cli_version") else model["name"] for model in TEST_MODELS],
+ ids=[
19
+ model.get("cli_version", model["name"])
20
+ if model.get("cli_version")
21
+ else model["name"]
22
+ for model in TEST_MODELS
23
+ ],
24
)
25
def test_cli_conversion(model: dict, test_config: dict, subtests):
26
"""Tests the whole CLI conversion flow with no extra params specified."""
0 commit comments