Add python 3.8-dev to travis and tox (#15347)

* Add Python 3.8-dev tox tests.

* Allow failures on 3.8-dev

* Allow failures on 3.8-dev take2

* Only run on pushes to dev
This commit is contained in:
Andrey 2018-07-13 12:37:03 +03:00 committed by Paulus Schoutsen
parent 6e3ec97acf
commit 23f1b49e55
2 changed files with 9 additions and 4 deletions

View File

@ -19,9 +19,14 @@ matrix:
- python: "3.7" - python: "3.7"
env: TOXENV=py37 env: TOXENV=py37
dist: xenial dist: xenial
# allow_failures: - python: "3.8-dev"
# - python: "3.5" env: TOXENV=py38
# env: TOXENV=typing dist: xenial
if: branch = dev AND type = push
allow_failures:
- python: "3.8-dev"
env: TOXENV=py38
dist: xenial
cache: cache:
directories: directories:

View File

@ -1,5 +1,5 @@
[tox] [tox]
envlist = py35, py36, py37, lint, pylint, typing envlist = py35, py36, py37, py38, lint, pylint, typing
skip_missing_interpreters = True skip_missing_interpreters = True
[testenv] [testenv]