diff --git a/.github/workflows/test_kilosort4.yml b/.github/workflows/test_kilosort4.yml index 7a9950047c..2dba9d1590 100644 --- a/.github/workflows/test_kilosort4.yml +++ b/.github/workflows/test_kilosort4.yml @@ -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 "CI@example.com" # 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"