Skip to content

Commit 9e0b937

Browse files
committed
Skip correlate tests on Windows
1 parent 7d4f1ca commit 9e0b937

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dpnp/tests/test_statistics.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
get_float_complex_dtypes,
2020
get_float_dtypes,
2121
has_support_aspect64,
22+
is_win_platform,
2223
numpy_version,
2324
)
2425
from .third_party.cupy.testing import with_requires
@@ -197,6 +198,7 @@ def _get_kwargs(mode=None, method=None):
197198
def setup_method(self):
198199
numpy.random.seed(0)
199200

201+
@pytest.skipif(is_win_platform(), reason="SAT-7784")
200202
@pytest.mark.parametrize(
201203
"a, v", [([1], [1, 2, 3]), ([1, 2, 3], [1]), ([1, 2, 3], [1, 2])]
202204
)
@@ -216,6 +218,7 @@ def test_correlate(self, a, v, mode, dtype, method):
216218

217219
assert_dtype_allclose(result, expected)
218220

221+
@pytest.skipif(is_win_platform(), reason="SAT-7784")
219222
@pytest.mark.parametrize("a_size", [1, 100, 10000])
220223
@pytest.mark.parametrize("v_size", [1, 100, 10000])
221224
@pytest.mark.parametrize("mode", ["full", "valid", "same"])

0 commit comments

Comments
 (0)