From 2676213a6e83f300c46a1f920be617d2d0c8ab91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Michael=20O=2E=20Hegg=C3=B8?= <danmichaelo@gmail.com> Date: Mon, 10 Jun 2019 14:52:58 +0200 Subject: [PATCH] Simplify Travis setup --- .travis.yml | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9504787..4533c45 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,23 +1,16 @@ # http://about.travis-ci.org/docs/user/languages/python/ - -sudo: false +dist: xenial language: python - -matrix: - include: - - python: 2.7 - - python: 3.4 - - python: 3.5 - - python: 3.6 - - python: 3.7 - dist: xenial - sudo: true - # Per https://github.com/travis-ci/travis-ci/issues/9815#issuecomment-426312699 +python: + - 2.7 + - 3.4 + - 3.5 + - 3.6 + - 3.7 install: - python setup.py install - - pip install coveralls - - pip install flake8 + - pip install coveralls flake8 script: - python setup.py test -- GitLab