summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 4afc27fb8cbd7fcd1093120a5acce4ce6948f1ca (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
31
32
33
sudo: required
dist: xenial
language: python

python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - 3.7
  - pypy
  - pypy3

matrix:
  allow_failures:
    - python: pypy3

addons:
  apt:
    packages:
      - jq

before_install:
  - pip install --quiet --upgrade pip codecov

install:
  - make install

script:
  - make test

after_success:
  - bash <(curl -s https://codecov.io/bash)