diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2019-09-21 03:53:22 +0000 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-09-21 13:47:32 +0000 |
commit | 4c737a7e54f573be82ea05782ccf353195d03ebd (patch) | |
tree | 1114b61e56f72e8f8a77476e9b40cdcf6885f2f9 | |
parent | 0dda2a37babda8bcc45a7f180513f92aa2da729e (diff) |
tests: fix test-checkstyle to check plugin tests
Type: fix
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I93eb0ae4338247fa2479f8e419483d1593436dc7
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 66c8f8a9bb7..f07b0c3467f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -269,7 +269,7 @@ checkstyle: verify-test-dir @virtualenv $(VENV_PATH) -p python3 @bash -c "source $(VENV_PATH)/bin/activate && python3 -m pip install pycodestyle" @bash -c "source $(VENV_PATH)/bin/activate &&\ - pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 --exclude=$(WS_ROOT)/test/_*.py -v $(WS_ROOT)/test/*.py ||\ + pycodestyle --show-source --ignore=W504,E126,E241,E226,E305,E704,E741,E722 --exclude=$(WS_ROOT)/test/_*.py -v $(WS_ROOT)/test/*.py $(PLUGIN_SRC_DIR)/*/test/*.py ||\ (echo \"*******************************************************************\" &&\ echo \"* Test framework PEP8 compliance check FAILED \" &&\ echo \"*******************************************************************\" &&\ |