summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 8c306d9a78b1bc7982b14ca48aeb078f34b8b4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: python
dist: xenial
cache: pip

python:
  - "2.7"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "3.9"

install:
  - pip install coverage coveralls codecov
  - pip install .

script:
  - LC_ALL=en_US.UTF-8 coverage run -m unittest test

after_success:
  - coveralls
  - codecov