Skip to content

Commit bcb59fe

Browse files
committed
fix selenium test path
walk over subdirectories in docs folder
1 parent 0d34f14 commit bcb59fe

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
@@ -15,7 +15,7 @@
1515
def find_notebooks():
1616
"""Return a list of filenames of the example notebooks."""
1717
path = os.path.dirname(__file__)
18-
pattern = os.path.join(path, "..", "..", "docs", "*.md")
18+
pattern = os.path.join(path, "..", "..", "docs", "**", "*.md")
1919
files = glob.glob(pattern)
2020
if files:
2121
return files

0 commit comments

Comments
 (0)