summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8d9c572525bc609bcb16a58bf3690a4fd2f060df (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
27
language: python
python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"
  - "pypy"

install:
  - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
  - pip install nose pycrypto mock pyjwt

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"