Skip to content

Commit

Permalink
Try to fix inspector tests after removal of requirements.txt (#1967)
Browse files Browse the repository at this point in the history
  • Loading branch information
rly authored Sep 19, 2024
1 parent 17adccf commit dc98e84
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
Expand Up @@ -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
Expand Down

0 comments on commit dc98e84

Please sign in to comment.