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:
14431443 def setup_method (self ):
14441444 numpy .random .seed (42 )
14451445
1446+ @pytest .mark .skipif (
1447+ is_win_platform () and not is_gpu_device (), reason = "SAT-8073"
1448+ )
14461449 @pytest .mark .parametrize ("dtype" , get_all_dtypes (no_none = True ))
14471450 @pytest .mark .parametrize (
14481451 "shape1, shape2" ,
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ def test_umaths(test_cases):
122122 pytest .skip ("dpnp.modf is not supported with dpnp.float16" )
123123 elif is_cuda_device ():
124124 pytest .skip ("dpnp.modf is not supported on CUDA device" )
125- elif umath == "vecmat" :
125+ elif umath in [ "vecmat" , "matvec" ] :
126126 if is_win_platform () and not is_gpu_device ():
127127 pytest .skip ("SAT-8073" )
128128
You can’t perform that action at this time.
0 commit comments