Skip to content

Commit dc98e84

Browse files
authored
Try to fix inspector tests after removal of requirements.txt (#1967)
1 parent 17adccf commit dc98e84

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/run_inspector_tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,10 @@ jobs:
3333
python -m pip list
3434
git clone https://github.com/NeurodataWithoutBorders/nwbinspector.git
3535
cd nwbinspector
36-
python -m pip install -r requirements.txt pytest
37-
python -m pip install . # this might install a pinned version of pynwb instead of the current one
36+
python -m pip install pytest
37+
python -m pip install ".[dandi]" # this might install a pinned version of pynwb instead of the current one
38+
# Download testing data and set config path
39+
dandi download "https://gui-staging.dandiarchive.org/#/dandiset/204919"
3840
cd ..
3941
python -m pip uninstall -y pynwb # uninstall the pinned version of pynwb
4042
python -m pip install . # reinstall current branch of pynwb

0 commit comments

Comments
 (0)