From 804296c6c9d89e632c3e1e9f2105210a63073068 Mon Sep 17 00:00:00 2001 From: belerico Date: Thu, 16 Apr 2020 23:29:28 +0200 Subject: [PATCH] Fix .travis.yml --- .travis.yml | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7976608..92f6de8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,30 @@ +language: python dist: xenial os: linux install: pip install tox-travis coveralls jobs: include: - language: python - python: - - "3.5" - - "3.6" - - "3.7" - - "3.8" + python: "3.5" script: - tox - allow_failures: - language: python - python: "nightly" + python: "3.6" script: - - coverage run - - coverage report --fail-under 80 -m + - tox + - language: python + python: "3.7" + script: + - tox + - language: python + python: "3.8" + script: + - tox + allow_failures: + - language: python + python: "nightly" + script: + - coverage run + - coverage report --fail-under 80 -m after_success: - coveralls