summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: bf4dbaf2187cdb1b30bfd48322138dd908fef1c7 (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
language: python
dist: xenial
cache: pip

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

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

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

after_success:
  - coveralls
  - codecov