diff options
author | Bryan Quigley <code@bryanquigley.com> | 2020-08-11 17:25:18 -0700 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-08-13 10:14:16 -0400 |
commit | 85b4e423cc23d7ba316d44b665b42a71f1324670 (patch) | |
tree | a57cbe035780b02ce0a93e39f3316ebb266bf006 /.travis.yml | |
parent | a80825dbb9e28306d9d2dac8114f00f03cce0c9a (diff) | |
download | sos-85b4e423cc23d7ba316d44b665b42a71f1324670.tar.gz |
[general] flake8 first pass
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 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index bf225c93..eaca2d06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ jobs: include: - - name: "20.04 pycodestyle and native run (py3.8)" + - name: "20.04 flake8 and native run (py3.8)" os: linux dist: focal language: shell install: sudo apt-get update; sudo apt install pycodestyle python3-pexpect; script: - - "pycodestyle sos tests bin/*" + - "flake8 sos tests bin/*" - "sudo ./tests/simple.sh" - name: "18.04 pycodestyle and native run (py3.6)" os: linux |