-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
53 lines (40 loc) · 1 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
46
47
48
49
50
51
52
# Framework for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
dist: trusty
sudo: false
addons:
apt:
packages:
# Requirements for NEST
- python-numpy
- python-scipy
- python-matplotlib
- python-sympy
- python-tables
- python-tornado
- python-tk
- libreadline6-dev
- libncurses5-dev
- libgsl0-dev
- cython
language: python
python: 2.7
virtualenv:
system_site_packages: true
env:
- OMV_ENGINE=PyNEST
#- OMV_ENGINE=PyNN_Brian1
- OMV_ENGINE=PyNN_NEURON # Takes ~9 mins...
- OMV_ENGINE=PyNN_Nest
#- OMV_ENGINE=jNeuroML_validate
install:
# Install OMV
- git clone https://github.com/OpenSourceBrain/osb-model-validation
- cd osb-model-validation
#- git checkout nest2_10 # Nest v2.10.0
- python setup.py install
- cd ..
script:
- ./make_tests.sh
- ls -alt
- omv all -V # Run simulateNetworks.py
- omv list -V