summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: c6879620cf226f4c8330c1a465021b68e95429ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dist: xenial
language: python
python:
    - "3.6"
    - "3.6-dev"
    - "3.7"
    - "3.7-dev"
    - "3.8-dev"
install:
    - pip install .
script:
    - python setup.py test
addons:
    chrome: stable
sudo: required
after_success:
  - bash <(curl -s https://codecov.io/bash)