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