summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorAnish Athalye <me@anishathalye.com>2019-01-09 20:28:38 -0500
committerAnish Athalye <me@anishathalye.com>2019-01-09 20:45:31 -0500
commitfa33cda9e6c95799946b6fbcd0e811ba5135c1e7 (patch)
tree31acaefff26bdc65545d0e75dc5d5181ce23a8a8 /.travis.yml
parent5d74f29001894d07a0a88724138d13972ac36023 (diff)
Add Python 3.7 to Travis CI tests
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml30
1 files changed, 20 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml
index 7c94ea4..57a5877 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,26 @@
language: python
-python:
- - "2.7"
- - "pypy"
- - "3.2"
- - "3.3"
- - "3.4"
- - "3.5"
- - "3.6"
- - "nightly"
- - "pypy3"
sudo: false
+.mixins:
+ - &xenial
+ dist: xenial
+
+jobs:
+ include:
+ - python: "2.7"
+ - python: "pypy"
+ - python: "3.2"
+ - python: "3.3"
+ - python: "3.4"
+ - python: "3.5"
+ - python: "3.6"
+ - <<: *xenial
+ python: "3.7"
+ - <<: *xenial
+ python: "3.8-dev"
+ - python: "nightly"
+ - python: "pypy3"
+
script:
- ./test/test_travis