Skip to content

Commit

Permalink
re-enable tests on linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
psobolewskiPhD committed Sep 14, 2024
1 parent dacf1e4 commit 135b73b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ def check_widget():
# check that the segmentation was proper, should yield 11 cells
assert viewer.layers[-1].data.max() == 10

@pytest.mark.skipif(sys.platform.startswith('linux'), reason="ubuntu stalls with two cellpose tests")
def test_compute_diameter(qtbot, viewer_widget):
viewer, widget = viewer_widget
viewer.open_sample(PLUGIN_NAME, 'rgb_2D')
Expand All @@ -75,7 +74,6 @@ def test_compute_diameter(qtbot, viewer_widget):
# so choosing a target that works for both
assert isclose(float(widget.diameter.value), 20.6, abs_tol=0.3)

@pytest.mark.skipif(sys.platform.startswith('linux'), reason="ubuntu stalls with >1 cellpose tests")
def test_3D_segmentation(qtbot, viewer_widget):
viewer, widget = viewer_widget
viewer.open_sample(PLUGIN_NAME, 'rgb_3D')
Expand Down

0 comments on commit 135b73b

Please sign in to comment.