diff options
author | Bryan Quigley <code@bryanquigley.com> | 2020-07-27 17:13:03 -0700 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-07-30 10:48:10 -0400 |
commit | b53745b153ec37b8fffdb68808b1707a4c30ac16 (patch) | |
tree | 1da6b02849752197310f323737107dba4873e9e4 /.travis.yml | |
parent | 95d40227e980d32727236764f421127e278fb7ba (diff) | |
download | sos-b53745b153ec37b8fffdb68808b1707a4c30ac16.tar.gz |
[travis] drop 16.04/py3.5 and fix build to use python
Was determined we can drop Ubuntu 16.04 and python3.5 support.
Also broke build cause we are trying only python3 now.
Resolves: #2168
Signed-off-by: Bryan Quigley <code@bryanquigley.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml index 9ef94b9b..fb0a538e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,26 +20,12 @@ jobs: arch: s390x language: shell script: "sudo ./tests/simple.sh" - - name: "16.04 native run (py3.5)" - os: linux - dist: xenial - language: shell - script: "sudo ./tests/simple.sh" - - name: "nosetests and travis Python 3.5" - os: linux - dist: bionic - language: python - python: "3.5" - install: pip install -r requirements.txt; python setup.py install; - script: - - "nosetests -v --with-cover --cover-package=sos --cover-html" - - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python" - name: "nosetests and travis Python 3.6" os: linux dist: bionic language: python python: "3.6" - install: pip install -r requirements.txt; python setup.py install; + install: pip install -r requirements.txt; python3 setup.py install; script: - "nosetests -v --with-cover --cover-package=sos --cover-html" - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python" @@ -48,7 +34,7 @@ jobs: dist: bionic language: python python: "3.7" - install: pip install -r requirements.txt; python setup.py install; + install: pip install -r requirements.txt; python3 setup.py install; script: - "nosetests -v --with-cover --cover-package=sos --cover-html" - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python" @@ -57,7 +43,7 @@ jobs: dist: bionic language: python python: "3.8" - install: pip install -r requirements.txt; python setup.py install; + install: pip install -r requirements.txt; python3 setup.py install; script: - "nosetests -v --with-cover --cover-package=sos --cover-html" - "sudo ./tests/simple.sh ~/virtualenv/python$TRAVIS_PYTHON_VERSION/bin/python" |