Skip to content

Commit c0344e3

Browse files
Update TestCond::test_nan skip condition
1 parent a046ab9 commit c0344e3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

dpnp/tests/test_linalg.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -334,11 +334,7 @@ def test_nan(self, p):
334334
# while OneMKL returns nans
335335
if is_cuda_device() and p in [-dpnp.inf, -1, 1, dpnp.inf, "fro"]:
336336
pytest.skip("Different behavior on CUDA")
337-
elif (
338-
is_gpu_device()
339-
and is_win_platform()
340-
and p in [-dpnp.inf, -1, 1, dpnp.inf, "fro"]
341-
):
337+
elif p in [-dpnp.inf, -1, 1, dpnp.inf, "fro"]:
342338
pytest.skip("SAT-7966")
343339
a = generate_random_numpy_array((2, 2, 2, 2))
344340
a[0, 0] = 0

0 commit comments

Comments
 (0)