[7f9fb8]: / mne / datasets / misc / _misc.py

Download this file

32 lines (23 with data), 770 Bytes

 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
# Authors: The MNE-Python contributors.
# License: BSD-3-Clause
# Copyright the MNE-Python contributors.
from ...utils import verbose
from ..utils import _data_path_doc, _download_mne_dataset, has_dataset
@verbose
def data_path(
path=None, force_update=False, update_path=True, download=True, *, verbose=None
): # noqa: D103
return _download_mne_dataset(
name="misc",
processor="untar",
path=path,
force_update=force_update,
update_path=update_path,
download=download,
)
def _pytest_mark():
import pytest
return pytest.mark.skipif(
not has_dataset(name="misc"), reason="Requires misc dataset"
)
data_path.__doc__ = _data_path_doc.format(name="misc", conf="MNE_DATASETS_MISC_PATH")