diff --git a/ica_pngs/test_ICA_summary_plot.png b/ica_pngs/test_ICA_summary_plot.png index dcfc2c7..3d0cf15 100644 Binary files a/ica_pngs/test_ICA_summary_plot.png and b/ica_pngs/test_ICA_summary_plot.png differ diff --git a/tests/conftest.py b/tests/conftest.py index 0308b9f..331bc8c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -9,6 +9,8 @@ def gen_mne_data_raw(): raw_fname = meg_path / 'sample_audvis_raw.fif' raw = mne.io.read_raw_fif(raw_fname, preload=True)#.crop(tmin=0, tmax=60) + raw = raw.pick(picks=['meg', 'eog', 'stim']) + yield raw @pytest.fixture(scope='session')