summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: d88b797165fca40ac6109e5b459d67d70d605145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
sudo: false
python:
    - "2.6"
    - "2.7"
#    - "3.2" removed because Coveralls/coverage 4.0 fails on 3.2
    - "3.3"
    - "3.4"
    - "3.5"
    - "3.6"
    - "pypy"
install:
    - pip install coveralls
script:
    - "python setup.py test"
    - "coverage run setup.py test"
after_success: coveralls