File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,16 +76,16 @@ jobs:
7676
7777 - name : Cyclomatic complexity (CC)
7878 run : |
79- radon cc run.py settings.py settings_utils.py app/ -a -s --total-average -x "app/templates/*,app/static/*"
79+ radon cc run.py app/ -a -s --total-average -x "app/templates/*,app/static/*"
8080
8181 - name : Maintainability index (MI)
8282 run : |
83- radon mi run.py settings.py settings_utils.py app/ -s -n B -x "app/templates/*,app/static/*"
83+ radon mi run.py app/ -s -n B -x "app/templates/*,app/static/*"
8484
8585 - name : Fail on high complexity (Xenon)
8686 run : |
8787 pip install xenon
88- xenon --max-absolute B --max-modules B --max-average B -e "app/templates/.*,app/static/.*" run.py settings.py settings_utils.py app/
88+ xenon --max-absolute B --max-modules B --max-average B -e "app/templates/.*,app/static/.*" run.py app/
8989
9090 security-bandit :
9191 needs : skip_check
@@ -105,4 +105,4 @@ jobs:
105105 run : pip install bandit
106106
107107 - name : Run Bandit
108- run : bandit -r run.py settings.py settings_utils.py app/ -ll -c pyproject.toml -x "app/templates/*,app/static/*"
108+ run : bandit -r run.py app/ -ll -c pyproject.toml -x "app/templates/*,app/static/*"
You can’t perform that action at this time.
0 commit comments