-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.travis.yml
54 lines (49 loc) · 1.08 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
branches:
only:
- master
- dev-michael
language: python
matrix:
allow_failures:
- os: osx
include:
- os: linux
dist: trusty
python: 2.7
sudo: required
apt:
packages:
- python-tk
- os: linux
dist: trusty
python: 3.6
sudo: required
apt:
packages:
- python-tk
- os: osx
language: generic
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then virtualenv venv -p python; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source venv/bin/activate; fi
install:
- pip install --upgrade pip
- pip install numpy==1.13.1
- pip install cython==0.26
- pip install scikit-learn==0.19.0
- pip install scipy==0.19.1
- pip install matplotlib==2.0.2
- pip install mdtraj==1.8.0
script:
- cd tests
- ./test_cg.sh
- ./test_anm.sh
- ./test_anm_wrapper.sh
- ./test_msf.sh
- ./test_conformation.sh
- ./test_trajectory.sh
- ./test_internal_pca.sh
- ./test_pca.sh
- ./test_mds.sh
- ./test_tsne.sh