From fe99a38569026c0c548020bca9e69b1921128439 Mon Sep 17 00:00:00 2001 From: "C.A.M. Gerlach" Date: Sat, 30 Dec 2017 16:03:46 -0600 Subject: [PATCH] Remove flaky (doesn't help) from introspection test, minor cleanup --- spyder/plugins/tests/test_editor_introspection.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/spyder/plugins/tests/test_editor_introspection.py b/spyder/plugins/tests/test_editor_introspection.py index a4de4819922..f1478d6025f 100644 --- a/spyder/plugins/tests/test_editor_introspection.py +++ b/spyder/plugins/tests/test_editor_introspection.py @@ -5,12 +5,12 @@ # """Tests for the Editor plugin.""" -# Third party imports -import pytest +# Standard library imports import os import os.path as osp -from flaky import flaky +# Third party imports +import pytest try: from unittest.mock import Mock except ImportError: @@ -58,7 +58,6 @@ def get_spyder_pythonpath(*args): editor.introspector.plugin_manager.close() -@flaky(max_runs=3) @pytest.mark.skipif(os.environ.get('CI', None) is not None, reason="This test fails too much in the CI :(") @pytest.mark.skipif(not JEDI_010,