rana-cli/.travis.yml

19 lines
469 B
YAML

language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies
install:
- 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
# use new travis-ci container-based infrastructure
sudo: false
# command to run tests
script: nosetests
# command to run after tests
after_success:
- coveralls