Skip to content

Commit

Permalink
Add linting to all-inclusive test series
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Nov 2, 2023
1 parent 08ab96a commit c885832
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions util/run-tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#!/bin/bash
#

function splat() ( echo "--------------------------------------------------------"; )

DO_MANUAL="--ignore-glob=**/manual/*"
if ! [ -z "$1" ]
then
Expand All @@ -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

0 comments on commit c885832

Please sign in to comment.