Skip to content

Commit d652602

Browse files
authored
Update .travis.yml
1 parent 73fa02e commit d652602

1 file changed

Lines changed: 19 additions & 2 deletions

File tree

.travis.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
# Framework for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
22

3+
dist: trusty
4+
sudo: false
5+
6+
addons:
7+
apt:
8+
packages:
9+
- python-matplotlib
10+
- python-tk
11+
- python-numpy
12+
- python-scipy
13+
- python-lxml
14+
- libhdf5-7
15+
- python-tables
16+
317
language: python
418
python: 2.7
519

20+
virtualenv:
21+
system_site_packages: true
22+
623
env:
724
- OMV_ENGINE=jNeuroML
825
- OMV_ENGINE=jNeuroML_NEURON
@@ -11,8 +28,8 @@ env:
1128

1229
install:
1330
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
14-
- pip install scipy
15-
- pip install tables
31+
- pip install scipy # Why is this needed? Doesn't seem to get installed correctly on trusty with addons above...
32+
- pip install tables # Ditto
1633

1734
script:
1835
- omv all -V

0 commit comments

Comments
 (0)