Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
name: Build site
command: |
source venv/bin/activate
make -C site/ html
# n = nitpicky (broken links), W = warnings as errors,
# T = full tracebacks, keep-going = run to completion even with errors
make -C site/ SPHINXOPTS="-nWT --keep-going" html

- store_artifacts:
path: site/_build/html
2 changes: 1 addition & 1 deletion site/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'notebooks']

# MyST-NB configuration
execution_timeout = 60
execution_timeout = 600


# -- Options for HTML output -------------------------------------------------
Expand Down