Skip to content

Commit

Permalink
MAINT: Replace Path.parent.parent with Path.parents[N] in tests (m…
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrltz authored and snwnde committed Mar 20, 2024
1 parent 1fe18e6 commit 1bd63f1
Show file tree
Hide file tree
Showing 62 changed files with 70 additions and 90 deletions.
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_compensator.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mne.io import read_raw_fif
from mne.utils import requires_mne, run_subprocess

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
ctf_comp_fname = base_dir / "test_ctf_comp_raw.fif"


Expand Down
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_meas_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
from mne.transforms import Transform
from mne.utils import _empty_hash, _record_warnings, assert_object_equal, catch_logging

root_dir = Path(__file__).parent.parent.parent
root_dir = Path(__file__).parents[2]
fiducials_fname = root_dir / "data" / "fsaverage" / "fsaverage-fiducials.fif"
base_dir = root_dir / "io" / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_pick.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
fname_meeg = data_path / "MEG" / "sample" / "sample_audvis_trunc-meg-eeg-oct-4-fwd.fif"
fname_mc = data_path / "SSS" / "test_move_anon_movecomp_raw_sss.fif"

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
ctf_fname = io_dir / "tests" / "data" / "test_ctf_raw.fif"
fif_fname = io_dir / "tests" / "data" / "test_raw.fif"

Expand Down
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_proc_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from mne._fiff.constants import FIFF
from mne.io import read_info

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = base_dir / "test_chpi_raw_sss.fif"


Expand Down
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from mne.io import RawArray, read_raw_fif
from mne.utils import _record_warnings, catch_logging

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
data_dir = testing.data_path(download=False) / "MEG" / "sample"
fif_fname = data_dir / "sample_audvis_trunc_raw.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/_fiff/tests/test_show_fiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from mne.io import show_fiff

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
fname_evoked = base_dir / "test-ave.fif"
fname_raw = base_dir / "test_raw.fif"
fname_c_annot = base_dir / "test_raw-annot.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/channels/tests/test_channels.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
from mne.parallel import parallel_func
from mne.utils import requires_good_network

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
base_dir = io_dir / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
eve_fname = base_dir / "test-eve.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/channels/tests/test_interpolation.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
)
from mne.utils import _record_warnings

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
event_name = base_dir / "test-eve.fif"
raw_fname_ctf = base_dir / "test_ctf_raw.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/channels/tests/test_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from mne.defaults import HEAD_SIZE_DEFAULT
from mne.io import read_info, read_raw_kit

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
fif_fname = io_dir / "tests" / "data" / "test_raw.fif"
lout_path = io_dir / "tests" / "data"
bti_dir = io_dir / "bti" / "tests" / "data"
Expand Down
2 changes: 1 addition & 1 deletion mne/channels/tests/test_montage.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
mgh70_fname = data_path / "SSS" / "mgh70_raw.fif"
subjects_dir = data_path / "subjects"

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
kit_dir = io_dir / "kit" / "tests" / "data"
elp = kit_dir / "test_elp.txt"
hsp = kit_dir / "test_hsp.txt"
Expand Down
2 changes: 1 addition & 1 deletion mne/decoding/tests/test_csp.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from mne import Epochs, io, pick_types, read_events
from mne.decoding.csp import CSP, SPoC, _ajd_pham

data_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_dir / "test_raw.fif"
event_name = data_dir / "test-eve.fif"
tmin, tmax = -0.2, 0.5
Expand Down
2 changes: 1 addition & 1 deletion mne/decoding/tests/test_ems.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from mne import Epochs, io, pick_types, read_events
from mne.decoding import EMS, compute_ems

data_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_dir / "test_raw.fif"
event_name = data_dir / "test-eve.fif"
tmin, tmax = -0.2, 0.5
Expand Down
2 changes: 1 addition & 1 deletion mne/decoding/tests/test_receptive_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
)
from mne.decoding.time_delaying_ridge import _compute_corrs, _compute_reg_neighbors

data_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_dir / "test_raw.fif"
event_name = data_dir / "test-eve.fif"

Expand Down
2 changes: 1 addition & 1 deletion mne/decoding/tests/test_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
tmin, tmax = -0.2, 0.5
event_id = dict(aud_l=1, vis_l=3)
start, stop = 0, 8
data_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_dir / "test_raw.fif"
event_name = data_dir / "test-eve.fif"

Expand Down
4 changes: 1 addition & 3 deletions mne/forward/tests/test_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@
fname_meeg_grad = (
data_path / "MEG" / "sample" / "sample_audvis_trunc-meg-eeg-oct-2-grad-fwd.fif"
)
fname_evoked = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test-ave.fif"
)
fname_evoked = Path(__file__).parents[2] / "io" / "tests" / "data" / "test-ave.fif"
label_path = data_path / "MEG" / "sample" / "labels"


Expand Down
6 changes: 2 additions & 4 deletions mne/forward/tests/test_make_forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@

data_path = testing.data_path(download=False)
fname_meeg = data_path / "MEG" / "sample" / "sample_audvis_trunc-meg-eeg-oct-4-fwd.fif"
fname_raw = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test_raw.fif"
)
fname_raw = Path(__file__).parents[2] / "io" / "tests" / "data" / "test_raw.fif"
fname_evo = data_path / "MEG" / "sample" / "sample_audvis_trunc-ave.fif"
fname_cov = data_path / "MEG" / "sample" / "sample_audvis_trunc-cov.fif"
fname_dip = data_path / "MEG" / "sample" / "sample_audvis_trunc_set1.dip"
Expand All @@ -66,7 +64,7 @@
fname_aseg = subjects_dir / "sample" / "mri" / "aseg.mgz"
fname_bem_meg = subjects_dir / "sample" / "bem" / "sample-1280-bem-sol.fif"

io_path = Path(__file__).parent.parent.parent / "io"
io_path = Path(__file__).parents[2] / "io"
bti_dir = io_path / "bti" / "tests" / "data"
kit_dir = io_path / "kit" / "tests" / "data"
trans_path = kit_dir / "trans-sample.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/io/array/tests/test_array.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from mne.io.array import RawArray
from mne.io.tests.test_raw import _test_raw_reader

base_dir = Path(__file__).parent.parent.parent / "tests" / "data"
base_dir = Path(__file__).parents[2] / "tests" / "data"
fif_fname = base_dir / "test_raw.fif"


Expand Down
2 changes: 1 addition & 1 deletion mne/io/fiff/tests/test_raw_fiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
ms_fname = testing_path / "SSS" / "test_move_anon_raw.fif"
skip_fname = testing_path / "misc" / "intervalrecording_raw.fif"

base_dir = Path(__file__).parent.parent.parent / "tests" / "data"
base_dir = Path(__file__).parents[2] / "tests" / "data"
test_fif_fname = base_dir / "test_raw.fif"
test_fif_gz_fname = base_dir / "test_raw.fif.gz"
ctf_fname = base_dir / "test_ctf_raw.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/io/tests/test_read_raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mne.io import read_raw
from mne.io._read_raw import _get_readers, split_name_ext

base = Path(__file__).parent.parent
base = Path(__file__).parents[1]
test_base = Path(testing.data_path(download=False))


Expand Down
4 changes: 1 addition & 3 deletions mne/preprocessing/tests/test_annotate_nan.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
import mne
from mne.preprocessing import annotate_nan

raw_fname = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test_raw.fif"
)
raw_fname = Path(__file__).parents[2] / "io" / "tests" / "data" / "test_raw.fif"


@pytest.mark.parametrize("meas_date", (None, "orig"))
Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_csd.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
coords_fname = data_path / "test_eeg_pos.mat"
csd_fname = data_path / "test_eeg_csd.mat"

io_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
io_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = io_path / "test_raw.fif"


Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_ecg.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from mne.io import read_raw_fif
from mne.preprocessing import create_ecg_epochs, find_ecg_events

data_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_path / "test_raw.fif"
event_fname = data_path / "test-eve.fif"
proj_fname = data_path / "test-proj.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_eog.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from mne.io import read_raw_fif
from mne.preprocessing.eog import find_eog_events

data_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_path / "test_raw.fif"
event_fname = data_path / "test-eve.fif"
proj_fname = data_path / "test-proj.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_hfc.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
fil_path = testing.data_path(download=False) / "FIL"
fname_root = "sub-noise_ses-001_task-noise220622_run-001"

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
ctf_fname = io_dir / "tests" / "data" / "test_ctf_raw.fif"
fif_fname = io_dir / "tests" / "data" / "test_raw.fif"

Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_ica.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
from mne.rank import _compute_rank_int
from mne.utils import _record_warnings, catch_logging, check_version

data_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_dir / "test_raw.fif"
event_name = data_dir / "test-eve.fif"
test_cov_name = data_dir / "test-cov.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_interpolate.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from mne.preprocessing.interpolate import _find_centroid_sphere
from mne.transforms import _cart_to_sph

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
event_name = base_dir / "test-eve.fif"
raw_fname_ctf = base_dir / "test_ctf_raw.fif"
Expand Down
4 changes: 2 additions & 2 deletions mne/preprocessing/tests/test_maxwell.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
use_log_level,
)

io_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
io_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_small_fname = io_path / "test_raw.fif"

data_path = testing.data_path(download=False)
Expand Down Expand Up @@ -122,7 +122,7 @@
tri_ctc_fname = triux_path / "ct_sparse_BMLHUS.fif"
tri_cal_fname = triux_path / "sss_cal_BMLHUS.dat"

io_dir = Path(__file__).parent.parent.parent / "io"
io_dir = Path(__file__).parents[2] / "io"
fname_ctf_raw = io_dir / "tests" / "data" / "test_ctf_comp_raw.fif"
ctf_fname_continuous = data_path / "CTF" / "testdata_ctf.ds"

Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_ssp.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from mne.io import read_raw_ctf, read_raw_fif
from mne.preprocessing.ssp import compute_proj_ecg, compute_proj_eog

data_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_path / "test_raw.fif"
dur_use = 5.0
eog_times = np.array([0.5, 2.3, 3.6, 14.5])
Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_stim.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from mne.io import read_raw_fif
from mne.preprocessing.stim import fix_stim_artifact

data_path = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
data_path = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = data_path / "test_raw.fif"
event_fname = data_path / "test-eve.fif"

Expand Down
2 changes: 1 addition & 1 deletion mne/preprocessing/tests/test_xdawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from mne.io import read_raw_fif
from mne.preprocessing.xdawn import Xdawn, _XdawnTransformer

base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
raw_fname = base_dir / "test_raw.fif"
event_name = base_dir / "test-eve.fif"

Expand Down
10 changes: 3 additions & 7 deletions mne/report/tests/test_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,9 @@
inv_fname = sample_meg_dir / "sample_audvis_trunc-meg-eeg-oct-6-meg-inv.fif"
stc_fname = sample_meg_dir / "sample_audvis_trunc-meg"
mri_fname = subjects_dir / "sample" / "mri" / "T1.mgz"
bdf_fname = (
Path(__file__).parent.parent.parent / "io" / "edf" / "tests" / "data" / "test.bdf"
)
edf_fname = (
Path(__file__).parent.parent.parent / "io" / "edf" / "tests" / "data" / "test.edf"
)
base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
bdf_fname = Path(__file__).parents[2] / "io" / "edf" / "tests" / "data" / "test.bdf"
edf_fname = Path(__file__).parents[2] / "io" / "edf" / "tests" / "data" / "test.edf"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
evoked_fname = base_dir / "test-ave.fif"
nirs_fname = (
data_dir / "SNIRF" / "NIRx" / "NIRSport2" / "1.0.3" / "2021-05-05_001.snirf"
Expand Down
12 changes: 3 additions & 9 deletions mne/simulation/tests/test_evoked.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,9 @@

data_path = testing.data_path(download=False)
fwd_fname = data_path / "MEG" / "sample" / "sample_audvis_trunc-meg-eeg-oct-6-fwd.fif"
raw_fname = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test_raw.fif"
)
ave_fname = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test-ave.fif"
)
cov_fname = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test-cov.fif"
)
raw_fname = Path(__file__).parents[2] / "io" / "tests" / "data" / "test_raw.fif"
ave_fname = Path(__file__).parents[2] / "io" / "tests" / "data" / "test-ave.fif"
cov_fname = Path(__file__).parents[2] / "io" / "tests" / "data" / "test-cov.fif"


@testing.requires_testing_data
Expand Down
4 changes: 1 addition & 3 deletions mne/simulation/tests/test_raw.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@
from mne.tests.test_chpi import _assert_quats
from mne.utils import catch_logging

raw_fname_short = (
Path(__file__).parent.parent.parent / "io" / "tests" / "data" / "test_raw.fif"
)
raw_fname_short = Path(__file__).parents[2] / "io" / "tests" / "data" / "test_raw.fif"

data_path = testing.data_path(download=False)
raw_fname = data_path / "MEG" / "sample" / "sample_audvis_trunc_raw.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/source_space/tests/test_source_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
fname_src = data_path / "subjects" / "sample" / "bem" / "sample-oct-4-src.fif"
fname_fwd = data_path / "MEG" / "sample" / "sample_audvis_trunc-meg-eeg-oct-4-fwd.fif"
trans_fname = data_path / "MEG" / "sample" / "sample_audvis_trunc-trans.fif"
base_dir = Path(__file__).parent.parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[2] / "io" / "tests" / "data"
fname_small = base_dir / "small-src.fif.gz"
fname_ave = base_dir / "test-ave.fif"
rng = np.random.RandomState(0)
Expand Down
2 changes: 1 addition & 1 deletion mne/tests/test_annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

data_path = testing.data_path(download=False)
data_dir = data_path / "MEG" / "sample"
fif_fname = Path(__file__).parent.parent / "io" / "tests" / "data" / "test_raw.fif"
fif_fname = Path(__file__).parents[1] / "io" / "tests" / "data" / "test_raw.fif"
first_samps = pytest.mark.parametrize("first_samp", (0, 10000))
edf_reduced = data_path / "EDF" / "test_reduced.edf"
edf_annot_only = data_path / "EDF" / "SC4001EC-Hypnogram.edf"
Expand Down
2 changes: 1 addition & 1 deletion mne/tests/test_bem.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from mne.transforms import translation
from mne.utils import catch_logging, check_version

fname_raw = Path(__file__).parent.parent / "io" / "tests" / "data" / "test_raw.fif"
fname_raw = Path(__file__).parents[1] / "io" / "tests" / "data" / "test_raw.fif"
subjects_dir = testing.data_path(download=False) / "subjects"
fname_bem_3 = subjects_dir / "sample" / "bem" / "sample-320-320-320-bem.fif"
fname_bem_1 = subjects_dir / "sample" / "bem" / "sample-320-bem.fif"
Expand Down
2 changes: 1 addition & 1 deletion mne/tests/test_chpi.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
from mne.utils import assert_meg_snr, catch_logging, object_diff, verbose
from mne.viz import plot_head_positions

base_dir = Path(__file__).parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[1] / "io" / "tests" / "data"
ctf_fname = base_dir / "test_ctf_raw.fif"
hp_fif_fname = base_dir / "test_chpi_raw_sss.fif"
hp_fname = base_dir / "test_chpi_raw_hp.txt"
Expand Down
2 changes: 1 addition & 1 deletion mne/tests/test_cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
from mne.rank import _compute_rank_int
from mne.utils import _record_warnings, assert_snr, catch_logging

base_dir = Path(__file__).parent.parent / "io" / "tests" / "data"
base_dir = Path(__file__).parents[1] / "io" / "tests" / "data"
cov_fname = base_dir / "test-cov.fif"
cov_gz_fname = base_dir / "test-cov.fif.gz"
cov_km_fname = base_dir / "test-km-cov.fif"
Expand Down
Loading

0 comments on commit 1bd63f1

Please sign in to comment.