We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dca751 commit 32d3290Copy full SHA for 32d3290
1 file changed
tests/test_examples.py
@@ -100,7 +100,7 @@ async def test_desktop(monkeypatch: pytest.MonkeyPatch):
100
assert "/fake/path/file2.txt" in content.text
101
102
103
-@pytest.mark.parametrize("example", find_examples("README.md"), ids=str)
+@pytest.mark.parametrize("example", list(find_examples("README.md")), ids=str)
104
def test_docs_examples(example: CodeExample, eval_example: EvalExample):
105
ruff_ignore: list[str] = ["F841", "I001", "F821"] # F821: undefined names (snippets lack imports)
106
0 commit comments