From 6d17362655951cbd0181e3b5e38fe67c9f30749d Mon Sep 17 00:00:00 2001 From: Bryan Quigley Date: Thu, 31 Jan 2019 11:24:24 -0800 Subject: [travis] Update python versions and 14.04 -> 16.04 The change notes specifically mention how they've improved performance including boot times with 16.04. Python 3.7 is now stable. Add --version flag for pycodestyle. Resolves: #1554 Signed-off-by: Bryan Quigley Signed-off-by: Bryn M. Reeves --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 90adba23..93c54693 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7-dev" + - "3.7" - "nightly" matrix: allow_failures: @@ -16,13 +16,13 @@ notifications: channels: - "us.freenode.net#sosreport" on_success: change -dist: trusty -sudo: true +dist: xenial install: - "pip install -r requirements.txt" - "python setup.py install" script: - "pycodestyle sos" + - "pycodestyle --version" - "nosetests -v --with-cover --cover-package=sos --cover-html" - "sudo ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python ./sosreport --help" - "sudo ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python ./sosreport -l --config-file=sos.conf" -- cgit