diff --git a/.github/workflows/test_kilosort4.yml b/.github/workflows/test_kilosort4.yml index 54905eda5f..8b4583c5bf 100644 --- a/.github/workflows/test_kilosort4.yml +++ b/.github/workflows/test_kilosort4.yml @@ -46,7 +46,7 @@ jobs: matrix: python-version: ["3.12"] os: [ubuntu-latest] - ks_version: ["4.0.12"] # ${{ fromJson(needs.versions.outputs.matrix) }} + ks_version: ${{ fromJson(needs.versions.outputs.matrix) }} steps: - name: Checkout repository uses: actions/checkout@v2 diff --git a/conftest.py b/conftest.py index 544c2fb6cb..8c06830d25 100644 --- a/conftest.py +++ b/conftest.py @@ -29,7 +29,7 @@ def pytest_collection_modifyitems(config, items): rootdir = Path(config.rootdir) modules_location = rootdir / "src" / "spikeinterface" for item in items: - try: + try: # TODO: make a note on this, check with Herberto its okay. rel_path = Path(item.fspath).relative_to(modules_location) except: continue