Skip to content

Commit 468340c

Browse files
committed
Merge branch 'jmafoster1/ignore-test-results' into sure2026
2 parents 1b9bd73 + d409adf commit 468340c

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@ temp/
6767

6868
# log files
6969
*.log
70+
71+
causal_test_results.json

tests/tutorial_tests/test_tutorials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from nbclient.client import NotebookClient
1818

1919
NOTEBOOK_DIR = pathlib.Path(__file__).parent.parent.parent / "docs" / "source" / "tutorials"
20-
NOTEBOOK_FILES = list(NOTEBOOK_DIR.rglob("[!.]*/*.ipynb"))
20+
NOTEBOOK_FILES = sorted(list(NOTEBOOK_DIR.rglob("[!.]*/*.ipynb")))
2121

2222

2323
@pytest.mark.parametrize("notebook_path", NOTEBOOK_FILES, ids=lambda p: p.name)

0 commit comments

Comments
 (0)