diff options
author | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-14 12:05:08 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-04-22 10:01:01 -0400 |
commit | 80180b736d00d3f12a1413eb0861efa24853d2e0 (patch) | |
tree | 1bec5ad83e32be610ac5a875776817a84d0dae86 /.travis.yml | |
parent | 1c71c0e4fdb8b17c24e237749931f6ea6d2ca138 (diff) | |
download | sos-80180b736d00d3f12a1413eb0861efa24853d2e0.tar.gz |
[travis] Update 18.04 native run to install pexpect
Adds pexpect to the 18.04 native run installation step. For now, leaving
it out of the 16.04 run.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 4b253633..901ff716 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ jobs: os: linux dist: bionic language: shell - install: sudo apt-get update; sudo apt install pycodestyle; + install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect; script: - "pycodestyle sos" - "sudo ./tests/simple.sh" |