diff --git a/spyder/plugins/tests/test_editor_introspection.py b/spyder/plugins/tests/test_editor_introspection.py index 5fe1dbe2b19..07c97d784e3 100644 --- a/spyder/plugins/tests/test_editor_introspection.py +++ b/spyder/plugins/tests/test_editor_introspection.py @@ -60,9 +60,8 @@ def get_spyder_pythonpath(*args): editor.introspector.plugin_manager.close() -@pytest.mark.slow -@pytest.mark.skipif(PY2 or PYQT4, - reason="Segfaults with other tests on Py2 and PyQt4.") +@pytest.mark.skipif(os.environ.get('CI', None) is not None, + reason="It makes other tests to segfault in our CIs") @pytest.mark.skipif(not JEDI_010, reason="This feature is only supported in jedy >= 0.10") def test_introspection(setup_editor):