First travis.yml for oauth2client.

This adds a simple `.travis.yml` with support for python 2.6, 2.7, and pypy,
and compacts a few lines in `tox.ini`.
This commit is contained in:
Craig Citro
2014-05-05 12:53:06 -07:00
parent 126786e3ab
commit afe482d1bd
2 changed files with 13 additions and 5 deletions

13
.travis.yml Normal file
View File

@@ -0,0 +1,13 @@
language: python
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=pypy
install:
- pip install tox
- pip install .
script:
- tox -e $TOX_ENV
notifications:
- email: false

View File

@@ -10,9 +10,4 @@ deps = keyring
webtest
nose
setenv = PYTHONPATH=../google_appengine
[testenv:py26]
commands = nosetests --ignore-files=test_appengine\.py
[testenv:py27]
commands = nosetests --ignore-files=test_appengine\.py