Mercurial > p > roundup > code
diff .travis.yml @ 5777:14500cf8de7b
Try to set up testing on python 3.7 allow failures so if it tanks the
whole build doesn't fail.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 09 Jun 2019 20:43:31 -0400 |
| parents | 5cb6e6b594b0 |
| children | 3816a68d7d69 |
line wrap: on
line diff
--- a/.travis.yml Sun Jun 09 19:42:45 2019 -0400 +++ b/.travis.yml Sun Jun 09 20:43:31 2019 -0400 @@ -1,10 +1,17 @@ language: python -python: - - 2.7 - - 3.4 - - 3.5 - - 3.6 - # - 3.7 not available in travis with 14.04 ubuntu base. + +matrix: + include: + - name: "Python <=3.6" + python: + - 2.7 + - 3.4 + - 3.5 + - 3.6 + allow_failures: + - name: "Python >3.6" + python: 3.7 + dist: xenial sudo: false
