Skip to content

Commit

Permalink
Testing: Skip tests that started to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Sep 25, 2021
1 parent 2ed9e05 commit 0ccfa4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions spyder/app/tests/test_mainwindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3187,6 +3187,7 @@ def test_runcell_cache(main_window, qtbot, debug):

@pytest.mark.slow
@flaky(max_runs=3)
@pytest.mark.skipif(os.name == 'nt', reason="Fails on Windows")
def test_path_manager_updates_clients(qtbot, main_window, tmpdir):
"""Check that on path manager updates, consoles correctly update."""
main_window.show_path_manager()
Expand Down
3 changes: 2 additions & 1 deletion spyder/plugins/editor/widgets/tests/test_editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def test_move_multiple_lines_up(editor_bot):
assert editor.toPlainText() == expected_new_text


@pytest.mark.skipif(os.name == 'nt', reason="It fails on Windows")
@pytest.mark.skipif(not sys.platform.startswith('linux'),
reason="Works only on Linux")
def test_copy_lines_down_up(editor_bot, mocker, qtbot):
"""
Test that copy lines down and copy lines up are working as expected.
Expand Down

0 comments on commit 0ccfa4d

Please sign in to comment.