This commit is contained in:
Adam Wilson
2025-07-02 11:34:47 -06:00
parent f0fcc64258
commit a25e8f9545
+5 -2
View File
@@ -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
mypy