Skip to content

Commit

Permalink
fix selenium test path
Browse files Browse the repository at this point in the history
walk over subdirectories in docs folder
  • Loading branch information
Conengmo committed Sep 5, 2023
1 parent 0d34f14 commit bcb59fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/selenium/test_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def find_notebooks():
"""Return a list of filenames of the example notebooks."""
path = os.path.dirname(__file__)
pattern = os.path.join(path, "..", "..", "docs", "*.md")
pattern = os.path.join(path, "..", "..", "docs", "**", "*.md")
files = glob.glob(pattern)
if files:
return files
Expand Down

0 comments on commit bcb59fe

Please sign in to comment.