Skip to content

Commit

Permalink
plexon has a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
h-mayorquin committed Jun 14, 2024
1 parent 238239c commit 29a2da9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,9 @@ jobs:
shell: bash
- name: Test core
run: pytest -m "core"
- name: Test internal sorters
run: ./.github/run_tests.sh sorters_internal --no-virtual-env
shell: bash
- name: Test extractors
env:
HDF5_PLUGIN_PATH: ${{ github.workspace }}/hdf5_plugin_path_maxwell
Expand Down Expand Up @@ -111,9 +114,6 @@ jobs:
- name: Test sortingcomponents
run: ./.github/run_tests.sh sortingcomponents --no-virtual-env
shell: bash
# - name: Test internal sorters
# run: ./.github/run_tests.sh sorters_internal --no-virtual-env
# shell: bash
- name: Test generation
run: ./.github/run_tests.sh generation --no-virtual-env
shell: bash
2 changes: 1 addition & 1 deletion src/spikeinterface/extractors/tests/test_neoextractors.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ def test_pickling(self):


# We run plexon2 tests only if we have dependencies (wine)
@pytest.mark.skipif(not has_plexon2_dependencies(), reason="Required dependencies not installed")
@pytest.mark.skipif(not has_plexon2_dependencies() or platform.system() == "Windows", reason="There is a bug")
class Plexon2RecordingTest(RecordingCommonTestSuite, unittest.TestCase):
ExtractorClass = Plexon2RecordingExtractor
downloads = ["plexon"]
Expand Down

0 comments on commit 29a2da9

Please sign in to comment.