forked from ssato/python-anyconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
35 lines (35 loc) · 811 Bytes
/
Copy path.travis.yml
File metadata and controls
35 lines (35 loc) · 811 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
# Ref. http://about.travis-ci.org/docs/user/languages/python/
language: python
python:
#- 2.4
#- 2.5
- 2.6
- 2.7
#- 3.2
- 3.3
- 3.4
#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"
install:
- if [[ $TRAVIS_PYTHON_VERSION < '2.7' ]]; then pip install -r pkg/test_requirements-py-2.6.txt; else pip install -r pkg/test_requirements.txt; fi
env:
- WITH_COVERAGE=1
script:
- "./pkg/runtest.sh"
after_success:
- coveralls
notifications:
email:
recipients:
- satoru.satoh+github@gmail.com
on_failure: always