We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72c5df commit 9aab2bfCopy full SHA for 9aab2bf
.github/workflows/test.yml
@@ -135,3 +135,11 @@ jobs:
135
# -rf: print failed tests
136
# --timeout: max allowed time for each test
137
pytest -rf --timeout=60
138
+
139
+ - name: Run Notebook Tests
140
+ run: |
141
+ source .venv/bin/activate
142
+ # Run notebooks with longer timeout (notebooks include autotuning which takes time)
143
+ # --nbmake: execute notebooks and check for errors
144
+ # --overwrite: allow nbmake to overwrite notebook outputs
145
+ pytest --nbmake --overwrite notebooks/ --timeout=300 -v
requirements.txt
@@ -5,3 +5,4 @@ filecheck
5
expecttest
6
numpy
7
rich
8
+nbmake
0 commit comments