We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcb59fe commit 39f5becCopy full SHA for 39f5bec
1 file changed
tests/selenium/test_selenium.py
@@ -16,7 +16,7 @@ def find_notebooks():
16
"""Return a list of filenames of the example notebooks."""
17
path = os.path.dirname(__file__)
18
pattern = os.path.join(path, "..", "..", "docs", "**", "*.md")
19
- files = glob.glob(pattern)
+ files = glob.glob(pattern, recursive=True)
20
if files:
21
return files
22
else:
0 commit comments