@@ -366,6 +366,7 @@ def test_real_if_close_with_float_tol_false(self, xp, dtype):
366
366
assert x .dtype == out .dtype
367
367
return out
368
368
369
+ @pytest .mark .skip ("interp() is not supported yet" )
369
370
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
370
371
@testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
371
372
@testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -376,6 +377,7 @@ def test_interp(self, xp, dtype_y, dtype_x):
376
377
fy = xp .sin (fx ).astype (dtype_y )
377
378
return xp .interp (x , fx , fy )
378
379
380
+ @pytest .mark .skip ("interp() is not supported yet" )
379
381
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
380
382
@testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
381
383
@testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -386,6 +388,7 @@ def test_interp_period(self, xp, dtype_y, dtype_x):
386
388
fy = xp .sin (fx ).astype (dtype_y )
387
389
return xp .interp (x , fx , fy , period = 5 )
388
390
391
+ @pytest .mark .skip ("interp() is not supported yet" )
389
392
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
390
393
@testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
391
394
@testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -398,6 +401,7 @@ def test_interp_left_right(self, xp, dtype_y, dtype_x):
398
401
right = 20
399
402
return xp .interp (x , fx , fy , left , right )
400
403
404
+ @pytest .mark .skip ("interp() is not supported yet" )
401
405
@testing .with_requires ("numpy>=1.17.0" )
402
406
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
403
407
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -410,6 +414,7 @@ def test_interp_nan_fy(self, xp, dtype_y, dtype_x):
410
414
fy [0 ] = fy [2 ] = fy [- 1 ] = numpy .nan
411
415
return xp .interp (x , fx , fy )
412
416
417
+ @pytest .mark .skip ("interp() is not supported yet" )
413
418
@testing .with_requires ("numpy>=1.17.0" )
414
419
@testing .for_float_dtypes (name = "dtype_x" )
415
420
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -422,6 +427,7 @@ def test_interp_nan_fx(self, xp, dtype_y, dtype_x):
422
427
fx [- 1 ] = numpy .nan # x and fx must remain sorted (NaNs are the last)
423
428
return xp .interp (x , fx , fy )
424
429
430
+ @pytest .mark .skip ("interp() is not supported yet" )
425
431
@testing .with_requires ("numpy>=1.17.0" )
426
432
@testing .for_float_dtypes (name = "dtype_x" )
427
433
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -434,6 +440,7 @@ def test_interp_nan_x(self, xp, dtype_y, dtype_x):
434
440
x [- 1 ] = numpy .nan # x and fx must remain sorted (NaNs are the last)
435
441
return xp .interp (x , fx , fy )
436
442
443
+ @pytest .mark .skip ("interp() is not supported yet" )
437
444
@testing .with_requires ("numpy>=1.17.0" )
438
445
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
439
446
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -446,6 +453,7 @@ def test_interp_inf_fy(self, xp, dtype_y, dtype_x):
446
453
fy [0 ] = fy [2 ] = fy [- 1 ] = numpy .inf
447
454
return xp .interp (x , fx , fy )
448
455
456
+ @pytest .mark .skip ("interp() is not supported yet" )
449
457
@testing .with_requires ("numpy>=1.17.0" )
450
458
@testing .for_float_dtypes (name = "dtype_x" )
451
459
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -458,6 +466,7 @@ def test_interp_inf_fx(self, xp, dtype_y, dtype_x):
458
466
fx [- 1 ] = numpy .inf # x and fx must remain sorted
459
467
return xp .interp (x , fx , fy )
460
468
469
+ @pytest .mark .skip ("interp() is not supported yet" )
461
470
@testing .with_requires ("numpy>=1.17.0" )
462
471
@testing .for_float_dtypes (name = "dtype_x" )
463
472
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
@@ -470,6 +479,7 @@ def test_interp_inf_x(self, xp, dtype_y, dtype_x):
470
479
x [- 1 ] = numpy .inf # x and fx must remain sorted
471
480
return xp .interp (x , fx , fy )
472
481
482
+ @pytest .mark .skip ("interp() is not supported yet" )
473
483
@testing .for_all_dtypes (name = "dtype_x" , no_bool = True , no_complex = True )
474
484
@testing .for_all_dtypes (name = "dtype_y" , no_bool = True )
475
485
@testing .numpy_cupy_allclose (atol = 1e-5 )
@@ -482,6 +492,7 @@ def test_interp_size1(self, xp, dtype_y, dtype_x):
482
492
right = 20
483
493
return xp .interp (x , fx , fy , left , right )
484
494
495
+ @pytest .mark .skip ("interp() is not supported yet" )
485
496
@testing .with_requires ("numpy>=1.17.0" )
486
497
@testing .for_float_dtypes (name = "dtype_x" )
487
498
@testing .for_dtypes ("efdFD" , name = "dtype_y" )
0 commit comments