rana-cli/.travis.yml

19 lines
469 B
YAML
Raw Normal View History

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-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
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