Skip to content

Commit 14b4b94

Browse files
committed
- fixes
1 parent 0e343d0 commit 14b4b94

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/code-quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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/*"

0 commit comments

Comments
 (0)