File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/third_party/cupy/creation_tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,17 +92,17 @@ def test_diagflat3(self, xp):
92
92
a = testing .shaped_arange ((3 , 3 ), xp )
93
93
return xp .diagflat (a , - 2 )
94
94
95
- @pytest .mark .usefixtures ( "allow_fall_back_on_numpy " )
95
+ @pytest .mark .skip ( "Scalar input is not supported " )
96
96
@testing .numpy_cupy_array_equal ()
97
97
def test_diagflat_from_scalar (self , xp ):
98
98
return xp .diagflat (3 )
99
99
100
- @pytest .mark .usefixtures ( "allow_fall_back_on_numpy " )
100
+ @pytest .mark .skip ( "Scalar input is not supported " )
101
101
@testing .numpy_cupy_array_equal ()
102
102
def test_diagflat_from_scalar_with_k0 (self , xp ):
103
103
return xp .diagflat (3 , 0 )
104
104
105
- @pytest .mark .usefixtures ( "allow_fall_back_on_numpy " )
105
+ @pytest .mark .skip ( "Scalar input is not supported " )
106
106
@testing .numpy_cupy_array_equal ()
107
107
def test_diagflat_from_scalar_with_k1 (self , xp ):
108
108
return xp .diagflat (3 , 1 )
You can’t perform that action at this time.
0 commit comments