Skip to content

Commit

Permalink
back to skipif
Browse files Browse the repository at this point in the history
  • Loading branch information
skoudoro committed Dec 2, 2019
1 parent 0324d05 commit b0f111e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions fury/tests/test_ui.py
Expand Up @@ -762,8 +762,8 @@ def test_ui_image_container_2d(interactive=False):
show_manager.start()


# @pytest.mark.skipif(skip_win, reason="This test does not work on Windows."
# " Need to be introspected")
@pytest.mark.skipif(skip_win, reason="This test does not work on Windows."
" Need to be introspected")
@pytest.mark.skipif(not have_dipy, reason="Requires DIPY")
def test_timer():
"""Testing add a timer and exit window and app from inside timer."""
Expand Down
10 changes: 5 additions & 5 deletions fury/tests/test_window.py
Expand Up @@ -235,9 +235,9 @@ def test_parallel_projection():
npt.assert_equal(np.sum(arr2 > 0), np.sum(arr > 0))


# @pytest.mark.skipif(skip_osx or skip_win, reason="This test does not work on"
# " Windows and OSX. Need to "
# " be introspected")
@pytest.mark.skipif(skip_osx or skip_win, reason="This test does not work on"
" Windows and OSX. Need to "
" be introspected")
def test_order_transparent():

scene = window.Scene()
Expand Down Expand Up @@ -265,8 +265,8 @@ def test_order_transparent():
npt.assert_equal(green_no_ot > green_ot, True)


# @pytest.mark.skipif(skip_win, reason="This test does not work on Windows."
# " Need to be introspected")
@pytest.mark.skipif(skip_win, reason="This test does not work on Windows."
" Need to be introspected")
def test_stereo():
scene = window.Scene()

Expand Down

0 comments on commit b0f111e

Please sign in to comment.