We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c19a53e commit 7403339Copy full SHA for 7403339
1 file changed
.github/workflows/python.yml
@@ -32,7 +32,10 @@ jobs:
32
run: codespell --skip "*.json,*.txt,*.pdf" || true
33
34
- name: Run Bandit security scan
35
- run: bandit -r . --skip B101 || true
+ run: bandit -r . --skip B101,B105 || true
36
+
37
+ - name: Run Pytest tests
38
+ run: pytest
39
40
- name: Run Ruff checks with ignored rules
41
run: |
@@ -41,5 +44,4 @@ jobs:
44
- name: Run Mypy type checks
42
45
run: mypy . --ignore-missing-imports || true
43
46
- - name: Run Pytest tests
- run: pytest
47
0 commit comments