Files
deb-python-oauth2client/.travis.yml
Danny Hermes b65f2e11a9 Updating system tests to succeed on Travis.
Adds files which have been encrypted by Travis and
decrypts those files in scripts/run_system_tests.sh using
a key and initialization vector (iv) provided by the Travis
environment for this project.
2015-05-01 10:44:56 -07:00

22 lines
368 B
YAML

language: python
python: 2.7
sudo: false
env:
matrix:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=docs
- TOX_ENV=system-tests
- TOX_ENV=system-tests3
install:
- pip install tox
script:
- tox -e $TOX_ENV
after_success:
- if [[ "${TOX_ENV}" == "py27" ]]; then tox -e coveralls; fi
notifications:
email: false