Skip to content

Commit e877421

Browse files
authored
Merge pull request #146 from OpenSourceBrain/test_jnml
Fix for issue with: omv all -V --engine=jNeuroML_NEURON
2 parents f0456e0 + 97e27e9 commit e877421

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci_versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Run simple OMV tests
4646
run: |
47-
omv install pyNeuroML
47+
omv all -V --engine=jNeuroML_NEURON
4848
omv test -V utilities/tests/.test.exIzh.jnmlnetpyne.omt
4949
5050

omv/engines/jneuroml.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_environment():
1616
if "JNML_HOME" in os.environ:
1717
jnmlhome = os.environ["JNML_HOME"]
1818
elif shutil.which(JNeuroMLEngine.e_name) is not None:
19-
jnmlhome = Path(shutil.which(JNeuroMLEngine.e_name)).parent
19+
jnmlhome = str(Path(shutil.which(JNeuroMLEngine.e_name)).parent)
2020
else:
2121
jnmlhome = ""
2222

0 commit comments

Comments
 (0)