diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2019-09-21 03:53:22 +0000 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2019-09-23 16:35:26 +0000 |
commit | d5ade023bdb8c2acae41e31010b17ba2070f2541 (patch) | |
tree | 5eb8f8bceccdb56536043f0b25d045224ce6458e /test/Makefile | |
parent | 33909777c63712ca397165cd92e7cc62208eb5c8 (diff) |
tests: fix test-checkstyle to check plugin tests
Type: fix
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I93eb0ae4338247fa2479f8e419483d1593436dc7
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 ca861b3b3a1..d8bbf4d5c69 100644 --- a/test/Makefile +++ b/test/Makefile @@ -267,7 +267,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 \"*******************************************************************\" &&\ |