From 135b73b578aabb76eab8c2707d31b9b02ebab64a Mon Sep 17 00:00:00 2001 From: Peter Sobolewski Date: Sat, 14 Sep 2024 16:21:19 -0400 Subject: [PATCH] re-enable tests on linux CI --- tests/test_plugin.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_plugin.py b/tests/test_plugin.py index f686db0..0ca7a1c 100644 --- a/tests/test_plugin.py +++ b/tests/test_plugin.py @@ -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') @@ -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')