We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d4b72f + f4cd43f commit 58e2ac2Copy full SHA for 58e2ac2
spyder/app/tests/test_mainwindow.py
@@ -162,8 +162,8 @@ def close_window():
162
@pytest.mark.slow
163
@pytest.mark.use_introspection
164
@flaky(max_runs=3)
165
-@pytest.mark.skipif(os.name == 'nt',
166
- 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")
167
@pytest.mark.timeout(timeout=45, method='thread')
168
def test_calltip(main_window, qtbot):
169
"""Test that the calltip in editor is hidden when matching ')' is found."""
0 commit comments