Skip to content

Commit 7403339

Browse files
authored
upgrade python.yml
1 parent c19a53e commit 7403339

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/python.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ jobs:
3232
run: codespell --skip "*.json,*.txt,*.pdf" || true
3333

3434
- name: Run Bandit security scan
35-
run: bandit -r . --skip B101 || true
35+
run: bandit -r . --skip B101,B105 || true
36+
37+
- name: Run Pytest tests
38+
run: pytest
3639

3740
- name: Run Ruff checks with ignored rules
3841
run: |
@@ -41,5 +44,4 @@ jobs:
4144
- name: Run Mypy type checks
4245
run: mypy . --ignore-missing-imports || true
4346

44-
- name: Run Pytest tests
45-
run: pytest
47+

0 commit comments

Comments
 (0)