fix: do not shellcheck python venv

This commit is contained in:
ChillerDragon 2023-06-04 11:54:59 +02:00
parent e4118eaa84
commit 4e270eb213

View file

@ -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!"