Skip to content

Commit 3931189

Browse files
authored
Update tests/third_party/cupy/linalg_tests/test_solve.py
1 parent 40cdd49 commit 3931189

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/third_party/cupy/linalg_tests/test_solve.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,7 @@ class TestSolve(unittest.TestCase):
3636
@testing.numpy_cupy_allclose(
3737
atol=1e-3, contiguous_check=False, type_check=has_support_aspect64()
3838
)
39-
@pytest.mark.skipif(
40-
is_cpu_device() and is_win_platform(), reason="SAT-6842"
41-
)
39+
@pytest.mark.skipif(is_cpu_device(), reason="SAT-6842")
4240
def check_x(self, a_shape, b_shape, xp, dtype):
4341
a = testing.shaped_random(a_shape, xp, dtype=dtype, seed=0, scale=20)
4442
b = testing.shaped_random(b_shape, xp, dtype=dtype, seed=1)

0 commit comments

Comments
 (0)