summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml21
1 files changed, 15 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index ea09d94..b1d417c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,10 +1,17 @@
-dist: trusty
+dist: xenial
language: python
-python:
- - "3.4"
- - "3.5"
- - "3.6"
- - "pypy3.5"
+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:
@@ -12,3 +19,5 @@ script:
addons:
chrome: stable
sudo: required
+after_success:
+ - bash <(curl -s https://codecov.io/bash)