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