From c53c8c2b31b6734765f0f5638a8bb0e3bf3cff9b Mon Sep 17 00:00:00 2001 From: Stamatis Katsaounis Date: Thu, 1 Nov 2018 13:00:43 +0200 Subject: Fix Tox related issues This patch: - Fixes W504 and ignores W503, based on new rules for breaking with binary operators - No longer ignores lines bigger than 80 characters. - Comments out a specific unit test beucase it has an abnormal behavior. Sometimes, it passes while other it does not. It is not code related problem, but it results in false positive negative votes from jenkins-ci. Change-Id: I02d76daf2eb64621a599e6179ca4912b63b59d88 Signed-off-by: Stamatis Katsaounis --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index c9f5a6e..6b1fb5d 100644 --- a/tox.ini +++ b/tox.ini @@ -35,7 +35,7 @@ commands = flake8 {toxinidir} # E123, E125 skipped as they are invalid PEP-8. show-source = True -ignore = E123,E125,H803,E501 +ignore = E123,E125,H803,W503 builtins = _ exclude = build,dist,doc,legacy,.eggs,.git,.tox,.venv,testapi_venv,venv -- cgit 1.2.3-korg