File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ def _skip_if_no_pchip():
23
23
try :
24
24
from scipy .interpolate import pchip_interpolate # noqa
25
25
except ImportError :
26
+ import nose
26
27
raise nose .SkipTest ('scipy.interpolate.pchip missing' )
27
28
28
29
Original file line number Diff line number Diff line change @@ -22,13 +22,15 @@ def _skip_if_no_pchip():
22
22
try :
23
23
from scipy .interpolate import pchip_interpolate # noqa
24
24
except ImportError :
25
+ import nose
25
26
raise nose .SkipTest ('scipy.interpolate.pchip missing' )
26
27
27
28
28
29
def _skip_if_no_akima ():
29
30
try :
30
31
from scipy .interpolate import Akima1DInterpolator # noqa
31
32
except ImportError :
33
+ import nose
32
34
raise nose .SkipTest ('scipy.interpolate.Akima1DInterpolator missing' )
33
35
34
36
You can’t perform that action at this time.
0 commit comments