From 7ce683394751f18437dfce700d16ad7981958bdc Mon Sep 17 00:00:00 2001 From: Christian Nicolai Date: Fri, 28 Feb 2020 13:24:15 +0100 Subject: [PATCH] travis: fix build config validation problems - https://docs.travis-ci.com/user/reference/overview/#deprecated-virtualization-environments --- .travis.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index d6fc49a..3d02d42 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,26 +1,26 @@ --- -sudo: false +os: linux language: python python: - - "2.7" - - "3.4" - - "3.5" - - "3.7" +- "2.7" +- "3.4" +- "3.5" +- "3.7" -matrix: +jobs: fast_finish: true allow_failures: - - python: "3.4" - - python: "3.5" - - python: "3.7" + - python: "3.4" + - python: "3.5" + - python: "3.7" env: - - PIPENV_VERBOSITY=-1 +- PIPENV_VERBOSITY=-1 install: - - pip install --upgrade pipenv - - pipenv install --dev +- pip install --upgrade pipenv +- pipenv install --dev script: - - pylint bme280 - - pytest +- pylint bme280 +- pytest