Skip to content

Commit 6331075

Browse files
committed
add checks
1 parent 1462f92 commit 6331075

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/scripts/determine_testing_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
run_sorters_test = run_everything or sorters_changed
101101
run_internal_sorters_test = run_everything or run_sortingcomponents_tests or sorters_internal_changed
102102

103-
run_streaming_extractors_test = stream_extractors_changed
103+
run_streaming_extractors_test = stream_extractors_changed or github_actions_changed
104104

105105
install_plexon_dependencies = plexon2_changed
106106

src/spikeinterface/extractors/tests/test_neoextractors.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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
)
284284
class 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")
296297
class MaxwellRecordingTest(RecordingCommonTestSuite, unittest.TestCase):
297298
ExtractorClass = MaxwellRecordingExtractor
298299
downloads = ["maxwell"]

0 commit comments

Comments
 (0)