summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorHsiaoming Yang <me@lepture.com>2013-05-24 21:19:29 +0800
committerHsiaoming Yang <me@lepture.com>2013-05-24 21:20:10 +0800
commit6c0c76c98e740b62b9dd55cf14a263a35b9f1909 (patch)
tree8fdaa680233005dd573d7bd09d8b3f3ddc76cd11 /.travis.yml
parent28f1d3bb1a406b3f45f6cf2f1ccce96e2b31c489 (diff)
downloadoauthlib-6c0c76c98e740b62b9dd55cf14a263a35b9f1909.tar.gz
add more python version in travis and tox. #73
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 7b53c43..dafcf18 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,12 +1,20 @@
language: python
python:
- - 2.7
+ - "2.6"
+ - "2.7"
+ - "3.2"
+ - "3.3"
+ - "pypy"
+
install:
- - pip install tox
+ - pip install nose pycrypto mock unittest2
+
script:
- - tox
+ - nosetests -w tests
+
branches:
only:
- master
+
notifications:
irc: "irc.freenode.org#oauthlib"