-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (36 loc) · 967 Bytes
/
.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
sudo: required
notifications:
email:
on_success: never
on_failure: never
matrix:
include:
# - langage: python
# python: 2.7
# os: linux
# dist: trusty
- langage: python
python: 3.4
os: linux
dist: trusty
- langage: python
python: 3.5
os: linux
dist: trusty
- langage: python
python: 3.6
os: linux
dist: trusty
install: # command to install dependencies
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
# - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install python-nose python3-nose; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install python3-pip; fi
- pip3 install --user pydotplus
- pip3 install --user pydot
- pip3 install --user networkx
- pip3 install --user arpeggio
- pip3 install --user pyleri
- pip3 install . --user --verbose --no-index;
script:
- echo "DONE!"
# nosetests-3.3 -v