-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
29 lines (29 loc) · 953 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
# Ref. http://about.travis-ci.org/docs/user/languages/python/
language: python
python:
- 2.6
- 2.7
## Disabled for a while:
# - 3.2
# - 3.3
#matrix:
# include:
# - python: 2.4
# env: FULL="true"
# - python: 2.5
# env: FULL="true"
# - python: 2.6
# env: FULL="true"
# - python: 2.7
# env: FULL="true"
## - python: 3.2
## env: LANG="en_US.utf-8"
sudo: false
install:
- if [[ $TRAVIS_PYTHON_VERSION < '2.6' ]]; then pip install --use-mirrors simplejson PyYAML pep8 flake8; else pip install --use-mirrors PyYAML pep8 flake8; fi
- pip install --use-mirrors anyconfig tablib
# see: https://github.com/guillermo-carrasco/bcbio-nextgen-deploy/commit/dabb3903ffdb29743b15c76eb535e7ae14885cad
# see: https://github.com/travis-ci/travis-cookbooks/issues/155
#- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
script:
- "./pkg/runtest.sh"