Skip to content

Commit 47b89ee

Browse files
committed
fix: pytest warnings
1 parent 29b9a35 commit 47b89ee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_notebooks_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
# get all notebooks:
19-
@pytest.mark.parametrize("notebook", this_file_loc.with_name("examples").glob("*.ipynb"))
19+
@pytest.mark.parametrize("notebook", sorted(this_file_loc.with_name("examples").glob("*.ipynb")))
2020
def test_all_notebooks_run(notebook: Path):
2121
as_string = str(notebook)
2222
if any([nb in as_string for nb in _NOTEBOOKS_NOT_TO_RUN]):

0 commit comments

Comments
 (0)