summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..b1d417c
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,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)