2015-08-11 18:52:43 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2015-08-11 21:53:35 +00:00
|
|
|
- "2.6"
|
|
|
|
- "2.7"
|
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
2015-11-20 07:26:11 +00:00
|
|
|
- "3.5"
|
2015-08-11 18:52:43 +00:00
|
|
|
# command to install dependencies
|
2015-08-11 21:53:35 +00:00
|
|
|
install:
|
2015-09-29 22:30:52 +00:00
|
|
|
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi
|
|
|
|
- travis_retry pip install -r dev-requirements.txt
|
|
|
|
- travis_retry pip install coveralls
|
2015-08-11 21:53:35 +00:00
|
|
|
# use new travis-ci container-based infrastructure
|
2015-08-11 18:55:13 +00:00
|
|
|
sudo: false
|
2015-09-29 22:30:52 +00:00
|
|
|
# command to run tests
|
2015-09-29 22:50:33 +00:00
|
|
|
script: nosetests
|
2015-09-29 22:30:52 +00:00
|
|
|
# command to run after tests
|
2015-08-13 19:55:32 +00:00
|
|
|
after_success:
|
|
|
|
- coveralls
|