Skip to content

Temporary mute tests failing in public CI #2518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions dpnp/tests/test_product.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
assert_dtype_allclose,
generate_random_numpy_array,
get_all_dtypes,
is_gpu_device,
is_ptl,
is_win_platform,
numpy_version,
)
from .third_party.cupy import testing
Expand Down Expand Up @@ -1441,6 +1443,9 @@ class TestMatvec:
def setup_method(self):
numpy.random.seed(42)

@pytest.mark.skipif(
is_win_platform() and not is_gpu_device(), reason="SAT-8073"
)
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
@pytest.mark.parametrize(
"shape1, shape2",
Expand Down Expand Up @@ -2167,6 +2172,9 @@ class TestVecmat:
def setup_method(self):
numpy.random.seed(42)

@pytest.mark.skipif(
is_win_platform() and not is_gpu_device(), reason="SAT-8073"
)
@pytest.mark.parametrize("dtype", get_all_dtypes(no_none=True))
@pytest.mark.parametrize(
"shape1, shape2",
Expand Down
4 changes: 4 additions & 0 deletions dpnp/tests/test_umath.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
has_support_aspect64,
is_cuda_device,
is_gpu_device,
is_win_platform,
)

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

expected = getattr(numpy, umath)(*args)
result = getattr(dpnp, umath)(*iargs)
Expand Down
Loading