fix: do not shellcheck python venv
This commit is contained in:
parent
e4118eaa84
commit
4e270eb213
|
@ -20,7 +20,7 @@ err() {
|
|||
}
|
||||
|
||||
bash "$SCRIPT_ROOT/lint_json.sh" || err "json lint failed!"
|
||||
find . -type f -name '*.sh' -print0 | xargs -0 shellcheck -x || err "shellcheck failed!"
|
||||
find . -not -path './venv/*' -type f -name '*.sh' -print0 | xargs -0 shellcheck -x || err "shellcheck failed!"
|
||||
pytest . || err "pytest failed!"
|
||||
pylint twnet_parser/ || err "pylint failed!"
|
||||
mypy twnet_parser/ || err "mypy failed!"
|
||||
|
|
Loading…
Reference in a new issue