Skip to content

Commit 1690d2f

Browse files
author
Vahid Tavanashad
committed
include skipped tests
1 parent 875bf78 commit 1690d2f

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

dpnp/tests/test_product.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
assert_dtype_allclose,
1313
generate_random_numpy_array,
1414
get_all_dtypes,
15-
is_gpu_device,
1615
is_ptl,
17-
is_win_platform,
1816
numpy_version,
1917
)
2018
from .third_party.cupy import testing
@@ -1499,9 +1497,6 @@ def test_invalid_axes(self, xp):
14991497

15001498
@testing.with_requires("numpy>=2.2")
15011499
class TestMatvec:
1502-
@pytest.mark.skipif(
1503-
is_win_platform() and not is_gpu_device(), reason="SAT-8073"
1504-
)
15051500
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
15061501
@pytest.mark.parametrize(
15071502
"shape1, shape2",
@@ -2213,9 +2208,15 @@ def test_error(self, xp):
22132208

22142209
@testing.with_requires("numpy>=2.2")
22152210
class TestVecmat:
2211+
<<<<<<< HEAD
22162212
@pytest.mark.skipif(
22172213
is_win_platform() and not is_gpu_device(), reason="SAT-8073"
22182214
)
2215+
=======
2216+
def setup_method(self):
2217+
numpy.random.seed(42)
2218+
2219+
>>>>>>> cbcd5b1c5d4 (include skipped tests)
22192220
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
22202221
@pytest.mark.parametrize(
22212222
"shape1, shape2",

dpnp/tests/test_umath.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
has_support_aspect64,
2424
is_cuda_device,
2525
is_gpu_device,
26-
is_win_platform,
2726
)
2827

2928
# full list of umaths
@@ -122,9 +121,6 @@ def test_umaths(test_cases):
122121
pytest.skip("dpnp.modf is not supported with dpnp.float16")
123122
elif is_cuda_device():
124123
pytest.skip("dpnp.modf is not supported on CUDA device")
125-
elif umath in ["vecmat", "matvec"]:
126-
if is_win_platform() and not is_gpu_device():
127-
pytest.skip("SAT-8073")
128124

129125
expected = getattr(numpy, umath)(*args)
130126
result = getattr(dpnp, umath)(*iargs)

0 commit comments

Comments
 (0)