This is an automated email from the ASF dual-hosted git repository.

rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new 6b32049  Fix travis failures due to flake8 bug (#4083)
6b32049 is described below

commit 6b3204973dfba20a9b24118b2da894112efce500
Author: Vadim Raskin <[email protected]>
AuthorDate: Thu Oct 25 14:11:20 2018 +0200

    Fix travis failures due to flake8 bug (#4083)
---
 tools/travis/flake8.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/travis/flake8.sh b/tools/travis/flake8.sh
index 7edddaa..98b7c0d 100755
--- a/tools/travis/flake8.sh
+++ b/tools/travis/flake8.sh
@@ -38,5 +38,5 @@ done
 echo 'Flake8: second round to find any other stylistic issues...'
 for i in "${PYTHON_FILES[@]}"
 do
-    flake8 "$i" --ignore=E --max-line-length=127 --statistics
+    flake8 "$i" --ignore=E,W503,W504,W605 --max-line-length=127 --statistics
 done

Reply via email to