Skip to content

Commit d409adf

Browse files
committed
Ignoring tutorial causal test results
1 parent c2c90ca commit d409adf

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)