-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
46 lines (34 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Framework for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
dist: xenial
addons:
apt:
packages:
- python-matplotlib
- python-tk
- python-numpy
- python-scipy
- python-tornado
- python-lxml
- python-tables
language: python
python: 2.7
virtualenv:
system_site_packages: true
env:
- OMV_ENGINE=PyNEURON
# - OMV_ENGINE=PyNEURON:7.6 # Note: NEURON is preinstalled below...
- OMV_ENGINE=jNeuroML
- OMV_ENGINE=jNeuroML_NEURON
- OMV_ENGINE=jNeuroML_NetPyNE
- OMV_ENGINE=jNeuroML_validate
install:
- pip install kiwisolver==1.1.0 # Temporary, due to issues with 1.2.0
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
# Need to pre install NEURON so nrnivmodl can be run targeting mod files in a different directory
- omv install NEURON
- cd NEURON/test
- /home/travis/neuron/nrn/x86_64/bin/nrnivmodl ../mod.files
- ls -alt
- cd ../..
script:
- omv all -V