Skip to content

Commit 7a45d5b

Browse files
committed
Disable test broken due to log messages
1 parent 4e7cbf5 commit 7a45d5b

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

tests/test_interactive.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3858,6 +3858,12 @@ def test_debug_tab_completion_db_1(frontend):
38583858
""", frontend=frontend)
38593859

38603860

3861+
@pytest.mark.skip(
3862+
reason=(
3863+
"ipdb runs commands in a thread, which breaks prompt_toolkit.patch_stdout. "
3864+
"Turn this back on if a solution can be found."
3865+
)
3866+
)
38613867
@pytest.mark.skipif(_SUPPORTS_TAB_AUTO_IMPORT, reason='Autoimport on Tab requires IPython 9.3+')
38623868
def test_debug_tab_completion_module_1(frontend, tmp):
38633869
# Verify that tab completion on module names works.
@@ -3880,6 +3886,12 @@ def test_debug_tab_completion_module_1(frontend, tmp):
38803886
""", PYTHONPATH=tmp.dir, frontend=frontend)
38813887

38823888

3889+
@pytest.mark.skip(
3890+
reason=(
3891+
"ipdb runs commands in a thread, which breaks prompt_toolkit.patch_stdout. "
3892+
"Turn this back on if a solution can be found."
3893+
)
3894+
)
38833895
@pytest.mark.skipif(_SUPPORTS_TAB_AUTO_IMPORT, reason='Autoimport on Tab requires IPython 9.3+')
38843896
@retry
38853897
def test_debug_tab_completion_multiple_1(frontend, tmp):

0 commit comments

Comments
 (0)