Skip to content

Commit 82626d0

Browse files
committed
Try to unskip
1 parent 9ed91ee commit 82626d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpnp/tests/test_statistics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def _get_kwargs(mode=None, method=None):
198198
def setup_method(self):
199199
numpy.random.seed(0)
200200

201-
@pytest.skipif(is_win_platform(), reason="SAT-7784")
201+
# @pytest.mark.skipif(is_win_platform(), reason="SAT-7784")
202202
@pytest.mark.parametrize(
203203
"a, v", [([1], [1, 2, 3]), ([1, 2, 3], [1]), ([1, 2, 3], [1, 2])]
204204
)
@@ -218,7 +218,7 @@ def test_correlate(self, a, v, mode, dtype, method):
218218

219219
assert_dtype_allclose(result, expected)
220220

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

0 commit comments

Comments
 (0)