From 24968ae2fefc855b82c0c825594323406f4e09e7 Mon Sep 17 00:00:00 2001 From: Bruno Bord Date: Tue, 5 May 2020 15:58:06 +0200 Subject: [PATCH] Revamped/simplify Travis configuration * Drop the "sudo" for Python 3.7 job, * Using the "magic" matrix utility to make it more readable, * Upgraded the VM to Bionic --- .travis.yml | 31 +++++++++---------------------- CHANGELOG.md | 2 +- 2 files changed, 10 insertions(+), 23 deletions(-) diff --git a/.travis.yml b/.travis.yml index 77abd59..db19e7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,25 +1,12 @@ -sudo: false -dist: xenial +dist: bionic language: python -install: - - pip install tox - -script: - - tox -e $TOXENV - +cache: pip +install: pip install tox tox-travis +script: tox -v +python: +- 2.7 +- 3.5 +- 3.6 +- 3.7 matrix: fast_finish: true - include: - # Python version is just for the look on travis. - - python: 2.7 - env: TOXENV=py27 - - - python: 3.5 - env: TOXENV=py35 - - - python: 3.6 - env: TOXENV=py36 - - - python: 3.7 - env: TOXENV=py37 - sudo: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a29e01..5d3608f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## master (unreleased) -Nothing here yet. +* Revamped/Simplified Travis configuration. ## 1.0.0 (2020-05-05)