@@ -366,6 +366,7 @@ def test_real_if_close_with_float_tol_false(self, xp, dtype):
366366 assert x .dtype == out .dtype
367367 return out
368368
369+ @pytest .mark .skip ("interp() is not supported yet" )
369370 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
370371 @testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
371372 @testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -376,6 +377,7 @@ def test_interp(self, xp, dtype_y, dtype_x):
376377 fy = xp .sin (fx ).astype (dtype_y )
377378 return xp .interp (x , fx , fy )
378379
380+ @pytest .mark .skip ("interp() is not supported yet" )
379381 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
380382 @testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
381383 @testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -386,6 +388,7 @@ def test_interp_period(self, xp, dtype_y, dtype_x):
386388 fy = xp .sin (fx ).astype (dtype_y )
387389 return xp .interp (x , fx , fy , period = 5 )
388390
391+ @pytest .mark .skip ("interp() is not supported yet" )
389392 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
390393 @testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
391394 @testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -398,6 +401,7 @@ def test_interp_left_right(self, xp, dtype_y, dtype_x):
398401 right = 20
399402 return xp .interp (x , fx , fy , left , right )
400403
404+ @pytest .mark .skip ("interp() is not supported yet" )
401405 @testing .with_requires ("numpy>=1.17.0" )
402406 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
403407 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -410,6 +414,7 @@ def test_interp_nan_fy(self, xp, dtype_y, dtype_x):
410414 fy [0 ] = fy [2 ] = fy [- 1 ] = numpy .nan
411415 return xp .interp (x , fx , fy )
412416
417+ @pytest .mark .skip ("interp() is not supported yet" )
413418 @testing .with_requires ("numpy>=1.17.0" )
414419 @testing .for_float_dtypes (name = "dtype_x" )
415420 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -422,6 +427,7 @@ def test_interp_nan_fx(self, xp, dtype_y, dtype_x):
422427 fx [- 1 ] = numpy .nan # x and fx must remain sorted (NaNs are the last)
423428 return xp .interp (x , fx , fy )
424429
430+ @pytest .mark .skip ("interp() is not supported yet" )
425431 @testing .with_requires ("numpy>=1.17.0" )
426432 @testing .for_float_dtypes (name = "dtype_x" )
427433 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -434,6 +440,7 @@ def test_interp_nan_x(self, xp, dtype_y, dtype_x):
434440 x [- 1 ] = numpy .nan # x and fx must remain sorted (NaNs are the last)
435441 return xp .interp (x , fx , fy )
436442
443+ @pytest .mark .skip ("interp() is not supported yet" )
437444 @testing .with_requires ("numpy>=1.17.0" )
438445 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
439446 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -446,6 +453,7 @@ def test_interp_inf_fy(self, xp, dtype_y, dtype_x):
446453 fy [0 ] = fy [2 ] = fy [- 1 ] = numpy .inf
447454 return xp .interp (x , fx , fy )
448455
456+ @pytest .mark .skip ("interp() is not supported yet" )
449457 @testing .with_requires ("numpy>=1.17.0" )
450458 @testing .for_float_dtypes (name = "dtype_x" )
451459 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -458,6 +466,7 @@ def test_interp_inf_fx(self, xp, dtype_y, dtype_x):
458466 fx [- 1 ] = numpy .inf # x and fx must remain sorted
459467 return xp .interp (x , fx , fy )
460468
469+ @pytest .mark .skip ("interp() is not supported yet" )
461470 @testing .with_requires ("numpy>=1.17.0" )
462471 @testing .for_float_dtypes (name = "dtype_x" )
463472 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -470,6 +479,7 @@ def test_interp_inf_x(self, xp, dtype_y, dtype_x):
470479 x [- 1 ] = numpy .inf # x and fx must remain sorted
471480 return xp .interp (x , fx , fy )
472481
482+ @pytest .mark .skip ("interp() is not supported yet" )
473483 @testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
474484 @testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
475485 @testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -482,6 +492,7 @@ def test_interp_size1(self, xp, dtype_y, dtype_x):
482492 right = 20
483493 return xp .interp (x , fx , fy , left , right )
484494
495+ @pytest .mark .skip ("interp() is not supported yet" )
485496 @testing .with_requires ("numpy>=1.17.0" )
486497 @testing .for_float_dtypes (name = "dtype_x" )
487498 @testing .for_dtypes ("efdFD" , name = "dtype_y" )
0 commit comments