1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
import os
import numpy as np
import skimage
def _channel_kwarg(is_multichannel=False):
if np.lib.NumpyVersion(skimage.__version__) < '0.19.0':
return dict(multichannel=is_multichannel)
else:
return dict(channel_axis=-1 if is_multichannel else None)
def _skip_slow():
"""
Use this function to skip slow or highly demanding tests.
Use it as a `Class.setup` method or a `function.setup` attribute.
For example:
>>> from . import _skip_slow
>>> def time_something_slow():
pass
>>> time_something.setup = _skip_slow
"""
if os.environ.get("ASV_SKIP_SLOW", "0") == "1":
raise NotImplementedError("Skipping this test...")
|