-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (24 loc) · 798 Bytes
/
.travis.yml
File metadata and controls
37 lines (24 loc) · 798 Bytes
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
# Framework for running automated tests on OSB using Travis-CI, see https://github.com/OpenSourceBrain/osb-model-validation
dist: xenial
addons:
apt:
packages:
# Requirements for Brian & NEST
- python-sympy
- python-tables
- python-tornado
- libreadline6-dev
- libncurses5-dev
- libgsl0-dev
- cython
language: python
python: 3.7
env:
- OMV_ENGINE=Brian2
install:
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- pip install scipy # Why is this needed? Doesn't seem to get installed correctly with addons above...
- pip install matplotlib # Why is this needed? Doesn't seem to get installed correctly with addons above...
script:
- omv all -V
- omv list-engines -V