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 30 31 32 33 34 35
|
# Authors: Alexandre Gramfort <alexandre.gramfort@telecom-paristech.fr>
# Martin Luessi <mluessi@nmr.mgh.harvard.edu>
# Eric Larson <larson.eric.d@gmail.com>
# License: BSD Style.
import numpy as np
from ...utils import get_config, verbose
from ...fixes import partial
from ..utils import has_dataset, _data_path, _doc
has_sample_data = partial(has_dataset, name='sample')
@verbose
def data_path(path=None, force_update=False, update_path=True,
download=True, verbose=None):
return _data_path(path=path, force_update=force_update,
update_path=update_path, name='sample',
download=download,
verbose=verbose)
data_path.__doc__ = _doc.format(name='sample',
conf='MNE_DATASETS_SAMPLE_PATH')
# Allow forcing of sample dataset skip (for tests) using:
# `make test-no-sample`
def _skip_sample_data():
skip_sample = get_config('MNE_SKIP_SAMPLE_DATASET_TESTS', 'false') == 'true'
skip = skip_sample or not has_sample_data()
return skip
requires_sample_data = np.testing.dec.skipif(_skip_sample_data,
'Requires sample dataset')
|