From 6f9dfc4338820b5d4daf1cf295c1e02c925758b6 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Wed, 26 Jun 2024 13:12:32 +0100 Subject: [PATCH] try remove 'full', and add a naive approach at test file discovery. --- .github/workflows/test_kilosort4.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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"