File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737
3838 - name : Test tutorials
3939 run : |
40- jupyter nbconvert --to notebook --execute tutorials/*.ipynb --output-dir=/tmp --ExecutePreprocessor.timeout=300
40+ # tutorial_07_tikz.ipynb requires pdflatex — skip it in CI
41+ jupyter nbconvert --to notebook --execute \
42+ $(ls tutorials/*.ipynb | grep -v tutorial_07_tikz) \
43+ --output-dir=/tmp --ExecutePreprocessor.timeout=300
Original file line number Diff line number Diff line change @@ -39,7 +39,10 @@ def setup(app):
3939]
4040
4141templates_path = ["_templates" ]
42- exclude_patterns = []
42+ exclude_patterns = [
43+ # tutorial_07_tikz.ipynb requires pdflatex to render — skip during docs build
44+ "tutorials/tutorial_07_tikz.ipynb" ,
45+ ]
4346
4447
4548# -- Options for HTML output -------------------------------------------------
You can’t perform that action at this time.
0 commit comments