Skip to content

Commit

Permalink
fixed other python exec paths
Browse files Browse the repository at this point in the history
  • Loading branch information
kmilo9999 committed Jun 12, 2024
1 parent bb46bc7 commit 005c0eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,15 @@ jobs:
- name: Run MPI application
shell: bash -el {0}
run: |
mpiexec -np 2 python ./hnn_core/mpi_test.py
mpiexec -np 2 '${{ steps.cp310.outputs.python-path }}' ./hnn_core/mpi_test.py
- name: Verify NEURON installation
shell: bash -el {0}
run: |
nrniv -python -nobanner -mpi -c "from neuron import h; print(h)"
nrniv -python -nobanner -mpi '${{ steps.cp310.outputs.python-path }}' "from neuron import h; print(h)"
- name: Run MPI application with NEURON
shell: bash -el {0}
run: |
mpiexec -np 2 -verbose nrniv -python -mpi -nobanner python ./hnn_core/mpi_test.py
mpiexec -np 2 -verbose nrniv -python -mpi -nobanner '${{ steps.cp310.outputs.python-path }}' ./hnn_core/mpi_test.py
# - name: Lint with flake8
# shell: bash -el {0}
# run: |
Expand Down

0 comments on commit 005c0eb

Please sign in to comment.