Skip to content

Commit

Permalink
Testing: Skip test_auto_backend on Python 3 because it's segfaulting …
Browse files Browse the repository at this point in the history
…too much
  • Loading branch information
ccordoba12 committed Jan 7, 2018
1 parent 215a618 commit 9f93330
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions spyder/plugins/tests/test_ipythonconsole.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,9 @@ def close_console():
@pytest.mark.slow
@flaky(max_runs=3)
@pytest.mark.auto_backend
@pytest.mark.skipif(os.name == 'nt' or PYQT4,
reason="It times out sometimes on Windows and it's not needed in PyQt4")
@pytest.mark.skipif(os.name == 'nt' or PYQT4 or PY3,
reason=("It times out sometimes on Windows, it segfaults "
"in Python 3 and it's not needed in PyQt4"))
def test_auto_backend(ipyconsole, qtbot):
"""Test that the automatic backend is working correctly."""
# Wait until the window is fully up
Expand Down

0 comments on commit 9f93330

Please sign in to comment.