summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 3db2d3d2318a4aa094361d4518b60ebfa99bb49b (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
27
28
29
30
language: python
# Enable python 3.7
dist: xenial

sudo: false

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

addons:
  apt:
    packages:
    # Dependencies for pycurl compilation
    - libcurl4-openssl-dev
    - libssl-dev

install:
  - pip install tox-travis
script:
  - tox
after_success:
  - coverage combine
  - coverage report
  - pip install codecov
  - codecov