@@ -234,7 +234,7 @@ class BlackrockSortingTest(SortingCommonTestSuite, unittest.TestCase):
234234 ExtractorClass = BlackrockSortingExtractor
235235 downloads = ["blackrock" ]
236236 entities = [
237- "blackrock/FileSpec2.3001.nev" ,
237+ dict ( file_path = local_folder / "blackrock/FileSpec2.3001.nev" , sampling_frequency = 30_000.0 ) ,
238238 dict (file_path = local_folder / "blackrock/blackrock_2_1/l101210-001.nev" , sampling_frequency = 30_000.0 ),
239239 ]
240240
@@ -278,8 +278,8 @@ class Spike2RecordingTest(RecordingCommonTestSuite, unittest.TestCase):
278278
279279
280280@pytest .mark .skipif (
281- version .parse (platform .python_version ()) >= version .parse ("3.10" ),
282- reason = "Sonpy only testing with Python < 3.10!" ,
281+ version .parse (platform .python_version ()) >= version .parse ("3.10" ) or platform . system () == "Darwin" ,
282+ reason = "Sonpy only testing with Python < 3.10 and not supported on macOS !" ,
283283)
284284class CedRecordingTest (RecordingCommonTestSuite , unittest .TestCase ):
285285 ExtractorClass = CedRecordingExtractor
@@ -293,6 +293,7 @@ class CedRecordingTest(RecordingCommonTestSuite, unittest.TestCase):
293293 ]
294294
295295
296+ @pytest .mark .skipif (platform .system () == "Darwin" , reason = "Maxwell plugin not supported on macOS" )
296297class MaxwellRecordingTest (RecordingCommonTestSuite , unittest .TestCase ):
297298 ExtractorClass = MaxwellRecordingExtractor
298299 downloads = ["maxwell" ]
0 commit comments