Skip to content

Commit 8bc65c2

Browse files
committed
Update copilot-setup-steps.yml
Added steps to enable running tests
1 parent 24d5d2f commit 8bc65c2

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/copilot-setup-steps.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,16 @@ jobs:
3232
uses: matlab-actions/setup-matlab@v2
3333
with:
3434
cache: true
35+
36+
- name: Install python
37+
uses: actions/setup-python@v5
38+
with:
39+
python-version: '3.11'
40+
41+
- name: Configure python env
42+
run: |
43+
python -m pip install -U pip
44+
pip install -r +tests/requirements.txt
45+
python -m pip list
46+
echo "HDF5_PLUGIN_PATH=$(python -c "import hdf5plugin; print(hdf5plugin.PLUGINS_PATH)")" >> "$GITHUB_ENV"
47+
echo $( python -m pip show nwbinspector | grep ^Location: | awk '{print $2}' )

0 commit comments

Comments
 (0)