Skip to content

Commit

Permalink
Testing: Skip a couple of tests on Linux because they are not passing…
Browse files Browse the repository at this point in the history
… locally
  • Loading branch information
ccordoba12 committed Jan 7, 2018
1 parent 9f93330 commit 6e09a5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spyder/widgets/variableexplorer/tests/test_dataframeeditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ def test_dataframemodel_set_data_complex(monkeypatch):


@flaky(max_runs=3)
@pytest.mark.skipif(os.environ.get('CI', None) is not None and
@pytest.mark.skipif(os.environ.get('CI', None) is not None or
platform.startswith('linux'),
reason="Fails on Travis for no good reason.")
def test_dataframeeditor_edit_complex(qtbot, monkeypatch):
Expand Down Expand Up @@ -420,7 +420,7 @@ def test_dataframemodel_set_data_bool(monkeypatch):


@flaky(max_runs=3)
@pytest.mark.skipif(os.environ.get('CI', None) is not None and
@pytest.mark.skipif(os.environ.get('CI', None) is not None or
platform.startswith('linux'),
reason="Fails on Travis for no good reason.")
def test_dataframeeditor_edit_bool(qtbot, monkeypatch):
Expand Down

0 comments on commit 6e09a5f

Please sign in to comment.