Skip to content

Commit 40cdd49

Browse files
committed
Corrected the mute condition
1 parent 7115a94 commit 40cdd49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/third_party/cupy/linalg_tests/test_solve.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ 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+
)
3942
def check_x(self, a_shape, b_shape, xp, dtype):
4043
a = testing.shaped_random(a_shape, xp, dtype=dtype, seed=0, scale=20)
41-
if a.ndim > 2 and a.device.sycl_device.is_cpu and is_win_platform():
42-
pytest.skip("SAT-6842: reported hanging in public CI")
43-
4444
b = testing.shaped_random(b_shape, xp, dtype=dtype, seed=1)
4545
a = a.copy(order=self.order)
4646
b = b.copy(order=self.order)

0 commit comments

Comments
 (0)