We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47bbab3 commit df81c06Copy full SHA for df81c06
1 file changed
tests/test_examples.py
@@ -94,7 +94,7 @@ async def test_desktop(tmp_path: Path, monkeypatch: pytest.MonkeyPatch):
94
95
96
# TODO(v2): Change back to README.md when v2 is released
97
-@pytest.mark.parametrize("example", find_examples("README.v2.md"), ids=str)
+@pytest.mark.parametrize("example", list(find_examples("README.v2.md")), ids=str)
98
def test_docs_examples(example: CodeExample, eval_example: EvalExample):
99
ruff_ignore: list[str] = ["F841", "I001", "F821"] # F821: undefined names (snippets lack imports)
100
0 commit comments