summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: e748dd9ed6b849ec445856b71d21a200289e61dd (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

# needed to use trusty
sudo: required

dist: xenial

python:
  - "2.6"
  - "2.7"
  - "3.3"
  - "3.4"
  - "3.5"
  - "3.6"
  - "nightly"

install:
  - pip install coverage
  - python setup.py install

script:
  - coverage run setup.py test

after_success:
  - pip install coveralls && coveralls
  - pip install codecov && codecov