chore(tools): update pylint target to lint dirs separately

- avoids triggering duplicate code detection between hdk tests and
benchmarks
- update helper script serialize_targets.sh to avoid printing dir
This commit is contained in:
Arthur Meyre
2021-08-23 15:09:33 +02:00
parent 1d5be5a1e7
commit 30e00df977
2 changed files with 16 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ set +e
EXIT_CODE=0
for make_target in "$@"; do
make "${make_target}"
make --no-print-directory "${make_target}"
if [[ "$?" != "0" ]]; then
EXIT_CODE=1
fi