-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
60 lines (42 loc) · 1.2 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
53
54
55
56
57
58
59
60
language: python
addons:
apt:
packages:
- graphviz
python:
- "3.8"
#- "3.9" # issue with PsyNeuLink/GPy
# command to install dependencies
install:
# Install PsyNeuLink
#- pip install psyneulink
- python -m pip install git+https://github.com/SheffieldML/GPy.git@devel
- git clone https://github.com/PrincetonUniversity/PsyNeuLink.git pnl
- cd pnl
- git checkout mdf # specific branch of PsyNeuLink to use...
- python -m pip install .
- cd ..
# Install MDF
- git clone https://github.com/ModECI/MDF.git
- cd MDF
- python setup.py install
- cd -
# Install NeuroMLlite
- git clone https://github.com/NeuroML/NeuroMLlite.git
- cd NeuroMLlite
- git checkout master # specific branch of NeuroMLlite to use...
- python setup.py install
- cd ..
# Install pyNeuroML
- pip install pyneuroml
- pynml -h
script:
# Run NeuroML tests
- cd NeuroML
- ./regenerateAndTest.sh -nogui
# Run PsyNeuLink tests
# Note: these examples have been moved here (and updated for the latest MDF): https://github.com/ModECI/MDF/tree/main/examples/PsyNeuLink
#- cd ../PsyNeuLink
#- ./regenerateAndTest.sh
# List currently installed Python packages
- pip freeze