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 abdb41c commit 67b44ceCopy full SHA for 67b44ce
tests/test_execute.py
@@ -621,12 +621,16 @@ def test_bash_kernel(doctree):
621
if sys.platform == 'win32':
622
pytest.skip("Not trying bash on windows.")
623
624
+ # we set enable-bracketed-paste off
625
+ # to avoid bash_kernel accidentally raising errors
626
+ # (related to https://github.com/takluyver/bash_kernel/issues/107)
627
source = """
628
.. jupyter-kernel:: bash
629
:id: test
630
631
.. jupyter-execute::
632
633
+ bind 'set enable-bracketed-paste off'
634
echo "foo"
635
"""
636
with warnings.catch_warnings():
0 commit comments