summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 54b031c6cd8dfcbcd17443f984372e476a98133d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "pypy"

install:
  - pip install nose pycrypto mock
  - python .travis_install.py

script:
  - nosetests -w tests

after_success:
  - pip install coveralls
  - coverage run --source=oauthlib setup.py -q nosetests
  - coveralls

branches:
  only:
    - master

notifications:
  irc: "irc.freenode.org#oauthlib"