blob: 7abcfd7365fbfb1e756501dad60ab3a9c3780ce2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
dist: xenial
language: python
matrix:
include:
- python: "3.6"
- python: "3.7"
- python: "3.6-dev"
- python: "3.7-dev"
- python: "3.8-dev"
allow_failures:
- python: "3.6-dev"
- python: "3.7-dev"
- python: "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)
|