Skip to content

Commit

Permalink
remove outdated/broken test skips. CuPy<9.0 is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
grlee77 committed Oct 31, 2023
1 parent 025a455 commit c9e8af3
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions python/cucim/src/cucim/skimage/transform/tests/test_warps.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def shift(xy):
assert_array_almost_equal(outx, refx)


@cp.testing.with_requires("cupy>=9.0.0b2")
def test_warp_matrix():
x = cp.zeros((5, 5), dtype=cp.float64)
x[2, 2] = 1
Expand Down Expand Up @@ -116,7 +115,6 @@ def test_warp_nd():
assert_array_almost_equal(outx, refx)


@cp.testing.with_requires("cupy>=9.0.0b2")
def test_warp_clip():
x = cp.zeros((5, 5), dtype=cp.float64)
x[2, 2] = 1
Expand Down Expand Up @@ -573,7 +571,6 @@ def test_warp_identity():
assert cp.all(0 == warped_rgb_img[:, :, 1])


@cp.testing.with_requires("cupy>=9.0.0b2")
def test_warp_coords_example():
image = cp.array(astronaut().astype(cp.float32))
assert 3 == image.shape[2]
Expand Down

0 comments on commit c9e8af3

Please sign in to comment.