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 b94234e commit c30d05eCopy full SHA for c30d05e
1 file changed
tests/integration/test_examples.py
@@ -8,7 +8,7 @@
8
EXAMPLES_DIR = Path(__file__).resolve().parent.parent.parent / "examples"
9
# Make example_scripts a list of strings instead of Path objects so that pytest can use it in its
10
# automatic printouts. We convert the elements back to Paths in the test function.
11
-example_scripts = [str(p) for p in sorted(EXAMPLES_DIR.glob("*.py"))]
+example_scripts = [str(p) for p in sorted(EXAMPLES_DIR.rglob("*.py"))]
12
13
14
@pytest.mark.parametrize("example_script", [str(p) for p in example_scripts])
0 commit comments