Skip to content

Commit bd6073e

Browse files
authored
fix python.yml
1 parent 9852d67 commit bd6073e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/python.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,11 @@ jobs:
3434
- name: Run Bandit security scan
3535
run: bandit -r . --skip B101,B105 || true
3636

37-
- name: Run Pytest tests || true
38-
run: pytest
37+
- name: Run Pytest tests
38+
run: pytest || true
3939

4040
- name: Run Ruff checks with ignored rules
41-
run: |
42-
ruff check . --ignore B904,B905,EM101,EXE001,G004,ISC001,PLC0415,PLC1901,PLW060,PLW1641,PLW2901,PT011,PT018,PT028,S101,S311,SIM905,SLF001
41+
run: ruff check . --ignore B904,B905,EM101,EXE001,G004,ISC001,PLC0415,PLC1901,PLW060,PLW1641,PLW2901,PT011,PT018,PT028,S101,S311,SIM905,SLF001
4342

4443
- name: Run Mypy type checks
4544
run: mypy . --ignore-missing-imports || true

0 commit comments

Comments
 (0)