Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Bump cell timeout in sphinx config #1091

Merged
merged 2 commits into from
Nov 25, 2020
Merged
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
3 changes: 2 additions & 1 deletion conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
exclude_patterns = ['*.ipynb', '_build', 'legacy_tutorials',
'**.ipynb_checkpoints']

nbsphinx_timeout = 180
cell_timeout = os.getenv('QISKIT_CELL_TIMEOUT', 180)
nbsphinx_timeout = cell_timeout
nbsphinx_execute = 'always'
nbsphinx_execute_arguments = [
"--InlineBackend.figure_formats={'png', 'pdf'}",
Expand Down