Skip to content

Commit

Permalink
Send KeyboardInterrupt a little later in test_run_all_notebooks[Inter…
Browse files Browse the repository at this point in the history
…rupt.ipynb-opts6] (#285)

* Increase timeout of test_run_all_notebooks[Interrupt.ipynb-opts6]

This test is failing on riscv64 linux boards because
the interrupt happens too soon. Build log:
https://archriscv.felixc.at/.status/log.htm?url=logs/jupyter-nbclient/jupyter-nbclient-0.7.3-1.log

* Fix intersphinx_mapping

---------

Co-authored-by: David Brochart <[email protected]>
  • Loading branch information
kxxt and davidbrochart authored Apr 25, 2023
1 parent 314c12e commit 20b7d4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
]

# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'python': ('https://docs.python.org/', None)}


def setup(app):
Expand Down
2 changes: 1 addition & 1 deletion nbclient/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ def filter_messages_on_error_output(err_output):
"Interrupt.ipynb",
{
"kernel_name": "python",
"timeout": 1,
"timeout": 3,
"interrupt_on_timeout": True,
"allow_errors": True,
},
Expand Down

0 comments on commit 20b7d4b

Please sign in to comment.