rana-cli/.travis.yml

15 lines
396 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 --use-mirrors unittest2; fi
- travis_retry pip install --use-mirrors -r dev-requirements.txt
# command to run tests
script: nosetests
# use new travis-ci container-based infrastructure
sudo: false