summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 16 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml
index e09e518..b1d417c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,14 +1,23 @@
-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:
- - python -m unittest crocoite.browser
+ - python setup.py test
addons:
chrome: stable
sudo: required
+after_success:
+ - bash <(curl -s https://codecov.io/bash)