Skip to content

Commit d34d76f

Browse files
committed
Start testing pyNN.arbor
1 parent 22682d3 commit d34d76f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/full-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,13 @@ jobs:
5050
cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local -Dwith-mpi=ON ./nest-simulator-3.8
5151
make
5252
make install
53+
- name: Install Arbor
54+
if: startsWith(matrix.os, 'ubuntu')
55+
run: |
56+
python -m pip install arbor==0.9.0
5357
- name: Install PyNN itself
5458
run: |
55-
pip install -e ".[test]"
59+
python -m pip install -e ".[test]"
5660
- name: Test installation has worked (Ubuntu)
5761
# this is needed because the PyNN tests are just skipped if the simulator
5862
# fails to install, so we need to catch import failures separately
@@ -61,6 +65,7 @@ jobs:
6165
python -c "import pyNN.nest"
6266
python -c "import pyNN.neuron"
6367
python -c "import pyNN.brian2"
68+
python -c "import pyNN.arbor"
6469
- name: Test installation has worked (Windows)
6570
if: startsWith(matrix.os, 'windows')
6671
run: |

0 commit comments

Comments
 (0)