From c88583244bfd94e3b64fabc8b351cef2f5ecbbf1 Mon Sep 17 00:00:00 2001 From: Joshua Hiller Date: Thu, 2 Nov 2023 14:16:26 -0400 Subject: [PATCH] Add linting to all-inclusive test series --- util/run-tests.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/util/run-tests.sh b/util/run-tests.sh index bd0a64f58..659e9e8d2 100755 --- a/util/run-tests.sh +++ b/util/run-tests.sh @@ -1,6 +1,8 @@ #!/bin/bash # +function splat() ( echo "--------------------------------------------------------"; ) + DO_MANUAL="--ignore-glob=**/manual/*" if ! [ -z "$1" ] then @@ -17,3 +19,12 @@ fi coverage run --rcfile=util/coverage.config -m pytest -s -v $DO_MANUAL $DO_DEBUG coverage report bandit -r src +echo -e "\nFormatting" +splat +flake8 src/falconpy --count --statistics +echo -e "\nCode style and syntax" +splat +pylint src/falconpy +echo "Docstring style and syntax" +splat +pydocstyle src/falconpy \ No newline at end of file