summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 9aa890cd3ce63ab265103af38eaa8e13491fac2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
language: python
sudo: false
python:
    - "2.7"
    - "3.4"
    - "3.5"
    - "3.6"
    - "pypy"
install:
    - pip install coveralls
script:
    - "python setup.py test"
    - "coverage run setup.py test"
after_success: coveralls