Skip to content

Commit 39f5bec

Browse files
committed
fix selenium test path (again)
1 parent bcb59fe commit 39f5bec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/selenium/test_selenium.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def find_notebooks():
1616
"""Return a list of filenames of the example notebooks."""
1717
path = os.path.dirname(__file__)
1818
pattern = os.path.join(path, "..", "..", "docs", "**", "*.md")
19-
files = glob.glob(pattern)
19+
files = glob.glob(pattern, recursive=True)
2020
if files:
2121
return files
2222
else:

0 commit comments

Comments
 (0)