Skip to content

Commit 03482de

Browse files
committed
forgot we don't have NEURON in Windows in CI
1 parent 4ea937d commit 03482de

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/full-test.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,12 @@ jobs:
5454
- name: Install PyNN itself
5555
run: |
5656
pip install -e .
57-
pushd pyNN/neuron/nmodl
58-
nrnivmodl
59-
popd
57+
- name: Compile NEURON mechanisms (Linux)
58+
if: startsWith(matrix.os, 'ubuntu')
59+
run: |
60+
pushd pyNN/neuron/nmodl
61+
nrnivmodl
62+
popd
6063
- name: Run unit and system tests
6164
run: |
6265
pytest -v --cov=pyNN --cov-report=term test

0 commit comments

Comments
 (0)