diff options
Diffstat (limited to 'test/build/static_checkers.sh')
-rwxr-xr-x | test/build/static_checkers.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/build/static_checkers.sh b/test/build/static_checkers.sh index 42806e7..228b99a 100755 --- a/test/build/static_checkers.sh +++ b/test/build/static_checkers.sh @@ -21,6 +21,10 @@ exeter_set_description cppcheck "passt sources pass cppcheck" exeter_register clang_tidy make -C .. clang-tidy exeter_set_description clang_tidy "passt sources pass clang-tidy" -exeter_main "$@" +exeter_register flake8 make flake8 +exeter_set_description flake8 "passt tests in Python pass flake8" +exeter_register mypy make mypy +exeter_set_description mypy "passt tests in Python pass mypy --strict" +exeter_main "$@" |