From a25e8f9545028069ad5dd24ced2fbf775684fe4c Mon Sep 17 00:00:00 2001 From: Adam Wilson Date: Wed, 2 Jul 2025 11:34:47 -0600 Subject: [PATCH] updates --- tests/static_analysis/run_static_analysis.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/static_analysis/run_static_analysis.sh b/tests/static_analysis/run_static_analysis.sh index 6acbb75b5..f7599fd84 100755 --- a/tests/static_analysis/run_static_analysis.sh +++ b/tests/static_analysis/run_static_analysis.sh @@ -1,10 +1,13 @@ +cd ../.. +pwd + # get dependencies pip install -r ./requirements.txt # check cyclomatic complexity -python -m mccabe --min 3 ./../src/**/*.py +python -m mccabe --min 3 **/*.py # SAST (static application security testing) bandit -r ./../src -mypy \ No newline at end of file +mypy \ No newline at end of file