Skip to content

Commit cdaa65b

Browse files
committed
Mute the same tests for Windows also
1 parent 4b13514 commit cdaa65b

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

dpnp/tests/third_party/cupy/linalg_tests/test_decomposition.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
LTS_VERSION,
1616
has_support_aspect64,
1717
is_lts_driver,
18-
is_win_platform,
1918
)
2019
from dpnp.tests.third_party.cupy import testing
2120
from dpnp.tests.third_party.cupy.testing import _condition
@@ -204,8 +203,7 @@ def test_mode(self):
204203
self.check_mode(numpy.random.randn(5, 4), mode=self.mode)
205204

206205
@pytest.mark.skipif(
207-
not is_win_platform() and is_lts_driver(version=LTS_VERSION.V1_6),
208-
reason="SAT-8375",
206+
is_lts_driver(version=LTS_VERSION.V1_6), reason="SAT-8375"
209207
)
210208
@testing.with_requires("numpy>=1.22")
211209
@testing.fix_random()
@@ -215,8 +213,7 @@ def test_mode_rank3(self):
215213
self.check_mode(numpy.random.randn(2, 5, 4), mode=self.mode)
216214

217215
@pytest.mark.skipif(
218-
not is_win_platform() and is_lts_driver(version=LTS_VERSION.V1_6),
219-
reason="SAT-8375",
216+
is_lts_driver(version=LTS_VERSION.V1_6), reason="SAT-8375"
220217
)
221218
@testing.with_requires("numpy>=1.22")
222219
@testing.fix_random()

0 commit comments

Comments
 (0)