@@ -536,7 +536,9 @@ def test_export_raw_edf_does_not_fail_on_empty_header_fields(tmp_path):
536536 raw .export (tmp_path / "test.edf" , add_ch_type = True )
537537
538538
539- @pytest .mark .skipif (not check_version ("eeglabio" , "0.1.2" ), reason = "fixed by 0.1.2" )
539+ @pytest .mark .skipif (
540+ not check_version ("eeglabio" , "0.1.2" ), reason = "fixed by eeglabio 0.1.2"
541+ )
540542@pytest .mark .parametrize ("preload" , (True , False ))
541543def test_export_epochs_eeglab (tmp_path , preload ):
542544 """Test saving an Epochs instance to EEGLAB's set format."""
@@ -581,7 +583,6 @@ def test_export_epochs_eeglab(tmp_path, preload):
581583 epochs .export (Path (temp_fname ), overwrite = True )
582584
583585
584- @pytest .mark .filterwarnings ("ignore::FutureWarning" )
585586@testing .requires_testing_data
586587@pytest .mark .parametrize ("fmt" , ("auto" , "mff" ))
587588@pytest .mark .parametrize ("do_history" , (True , False ))
@@ -640,7 +641,6 @@ def test_export_evokeds_to_mff(tmp_path, fmt, do_history):
640641 evoked [0 ].export (export_fname , overwrite = True )
641642
642643
643- @pytest .mark .filterwarnings ("ignore::FutureWarning" )
644644@testing .requires_testing_data
645645def test_export_to_mff_no_device ():
646646 """Test no device type throws ValueError."""
@@ -652,7 +652,6 @@ def test_export_to_mff_no_device():
652652 export_evokeds ("output.mff" , evoked )
653653
654654
655- @pytest .mark .filterwarnings ("ignore::FutureWarning" )
656655def test_export_to_mff_incompatible_sfreq ():
657656 """Test non-whole number sampling frequency throws ValueError."""
658657 pytest .importorskip ("mffpy" , "0.5.7" )
0 commit comments