diff options
author | Chris Luke <chrisy@flirble.org> | 2018-04-10 15:19:54 -0400 |
---|---|---|
committer | Chris Luke <chris_luke@comcast.com> | 2018-04-10 19:21:59 +0000 |
commit | d042194b4bb0512a81924068013ed4e48f021a2b (patch) | |
tree | eed9c7753257af4af9676612fed3020b1cf9c201 /test/Makefile | |
parent | e3ae09f8a317747249518afa952dbd36287b5e9a (diff) |
test: Fix issues with new version of pycodestyle (VPP-1232)
- Ignore warnings W504 (newline after binary operator) which otherwise
occurs a significant number of times.
- Fix two instances of lines >79 chars.
Change-Id: I8cef56f8afc237187995e638e610c8c0554e2bb5
Signed-off-by: Chris Luke <chrisy@flirble.org>
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index cbeec79fa34..88192e7b474 100644 --- a/test/Makefile +++ b/test/Makefile @@ -196,7 +196,7 @@ checkstyle: verify-python-path @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP) @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pycodestyle" @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\ - pycodestyle --show-source --ignore=E126,E241,E226,E305,E704,E741,E722 -v $(WS_ROOT)/test/*.py ||\ + pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 -v $(WS_ROOT)/test/*.py ||\ (echo \"*******************************************************************\" &&\ echo \"* Test framework PEP8 compliance check FAILED \" &&\ echo \"*******************************************************************\" &&\ |