-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
try remove 'full', and add a naive approach at test file discovery.
- Loading branch information
1 parent
6053474
commit 6f9dfc4
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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" |