File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -69,14 +69,16 @@ def test_load_delimited_nocomment():
69
69
assert np .allclose (col2 , [20 , 50 ])
70
70
71
71
72
- @pytest .mark .parametrize ("file_or_path" , ["data/beat/ref01.txt" ,
73
- pathlib .Path ("data/beat/ref01.txt" )])
72
+ @pytest .mark .parametrize (
73
+ "file_or_path" , ["data/beat/ref01.txt" , pathlib .Path ("data/beat/ref01.txt" )]
74
+ )
74
75
def test_load_delimited_file_or_path (file_or_path ):
75
76
# Tests the load_delimited routine with either a string or a
76
- # pathlib.Path object as the first argument
77
+ # pathlib.Path object as the first argument
77
78
data = mir_eval .io .load_delimited (file_or_path , [float ])
78
79
assert len (data ) == 635
79
80
81
+
80
82
def test_load_events ():
81
83
# Test for a warning when invalid events are supplied
82
84
with tempfile .TemporaryFile ("r+" ) as f :
You can’t perform that action at this time.
0 commit comments