Skip to content

Commit

Permalink
Testing: Skip test_calltip on Python 3 and PyQt < 5.9 b/c it's failing
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Jan 25, 2018
1 parent 3d4b72f commit 2c76e50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyder/app/tests/test_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ def close_window():
@pytest.mark.slow
@pytest.mark.use_introspection
@flaky(max_runs=3)
@pytest.mark.skipif(os.name == 'nt',
reason="It times out on Windows locally and on AppVeyor.")
@pytest.mark.skipif(os.name == 'nt' or (not PY2 and PYQT_VERSION < "5.9.0"),
- reason="It times out on AppVeyor and fails on PY3 and PyQt 5.6")
@pytest.mark.timeout(timeout=45, method='thread')
def test_calltip(main_window, qtbot):
"""Test that the calltip in editor is hidden when matching ')' is found."""
Expand Down

0 comments on commit 2c76e50

Please sign in to comment.