File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -1443,6 +1443,9 @@ class TestMatvec:
1443
1443
def setup_method (self ):
1444
1444
numpy .random .seed (42 )
1445
1445
1446
+ @pytest .mark .skipif (
1447
+ is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
1448
+ )
1446
1449
@pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
1447
1450
@pytest .mark .parametrize (
1448
1451
"shape1, shape2" ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def test_umaths(test_cases):
122
122
pytest .skip ("dpnp.modf is not supported with dpnp.float16" )
123
123
elif is_cuda_device ():
124
124
pytest .skip ("dpnp.modf is not supported on CUDA device" )
125
- elif umath == "vecmat" :
125
+ elif umath in [ "vecmat" , "matvec" ] :
126
126
if is_win_platform () and not is_gpu_device ():
127
127
pytest .skip ("SAT-8073" )
128
128
You can’t perform that action at this time.
0 commit comments