Skip to content

Commit

Permalink
Revert back to use all KS versions in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Jun 26, 2024
1 parent dfa8f33 commit ea07c4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_kilosort4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ea07c4e

Please sign in to comment.