Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Try to fix inspector tests after removal of requirements.txt
Browse files Browse the repository at this point in the history
rly authored Sep 19, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 17adccf commit 4dc415b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run_inspector_tests.yml
Original file line number Diff line number Diff line change
@@ -33,8 +33,10 @@ jobs:
python -m pip list
git clone https://github.com/NeurodataWithoutBorders/nwbinspector.git
cd nwbinspector
python -m pip install -r requirements.txt pytest
python -m pip install . # this might install a pinned version of pynwb instead of the current one
python -m pip install pytest
python -m pip install ".[dandi]" # this might install a pinned version of pynwb instead of the current one
# Download testing data and set config path
dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919"
cd ..
python -m pip uninstall -y pynwb # uninstall the pinned version of pynwb
python -m pip install . # reinstall current branch of pynwb

0 comments on commit 4dc415b

Please sign in to comment.