Skip to content

Commit

Permalink
try remove 'full', and add a naive approach at test file discovery.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Jun 26, 2024
1 parent 6053474 commit 6f9dfc4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/test_kilosort4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install packages
# TODO: maybe dont need full?
run: |
pip install -e .[full,test]
pip install -e .[test]
# git config --global user.email "[email protected]"
# git config --global user.name "CI Almighty"
# pip install tabulate
Expand All @@ -49,5 +50,13 @@ jobs:

- name: Run new kilosort4 tests
# run: chmod +x .github/test_kilosort4.sh
run: pytest .github/test_kilosort4.py --durations=0
# TODO: must be a better way
run: |
cd ..
pytest .github/test_kilosort4.py --durations=0
shell: bash

# TODO: pip install -e .[full,dev] is failing #
#The conflict is caused by:
# spikeinterface[docs] 0.101.0rc0 depends on datalad==0.16.2; extra == "docs"
# spikeinterface[test] 0.101.0rc0 depends on datalad>=1.0.2; extra == "test"

0 comments on commit 6f9dfc4

Please sign in to comment.