diff options
author | Bryan Quigley <code@bryanquigley.com> | 2020-08-11 21:25:48 -0700 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-08-13 10:14:16 -0400 |
commit | 110852f0f7394a180029eabfb7d204000e168412 (patch) | |
tree | 9f8e423554da937a47b4eeb35cfc56c32cf78575 /.travis.yml | |
parent | 1c7faf96d4773b05745b0b5628f2ec2da8e144a2 (diff) | |
download | sos-110852f0f7394a180029eabfb7d204000e168412.tar.gz |
[general] better error message
Resolves: #2196
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 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index eaca2d06..d1e986d9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ jobs: os: linux dist: focal language: shell - install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect; + install: sudo apt-get update; sudo apt install flake8 python3-pexpect; script: - "flake8 sos tests bin/*" - "sudo ./tests/simple.sh" @@ -12,7 +12,7 @@ jobs: os: linux dist: bionic language: shell - install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect; + install: sudo apt-get update; sudo apt install python3-pexpect; script: "sudo ./tests/simple.sh" - name: "18.04 native run for arm64" os: linux @@ -62,4 +62,4 @@ notifications: - "us.freenode.net#sosreport" on_success: change git: - depth: 5 + depth: 20 |