Create a short, picked raw instance.
()
| 24 | |
| 25 | @pytest.fixture() |
| 26 | def short_raw(): |
| 27 | """Create a short, picked raw instance.""" |
| 28 | raw = read_raw_fif(raw_fname).crop(0, 7).pick(["meg", "eeg", "eog"]) |
| 29 | raw.pick(raw.ch_names[:306:10] + raw.ch_names[306:]).load_data() |
| 30 | raw.info.normalize_proj() |
| 31 | return raw |
| 32 | |
| 33 | |
| 34 | @pytest.mark.parametrize("average", (True, False)) |
nothing calls this directly
no test coverage detected