Skip to content

Commit d738e5b

Browse files
authored
make prospector always exit with zero (refs #46)
1 parent 38addbd commit d738e5b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
- name: Show pip list
3030
run: |
3131
pip list
32-
- name: Check style against standards using prospector
32+
- name: Check style against standards using prospector (only warn for now, but never fail)
3333
shell: bash -l {0}
34-
run: prospector --profile linter_profile -o grouped -o pylint:pylint-report.txt
34+
run: prospector --profile linter_profile -o grouped -o pylint:pylint-report.txt --zero-exit
3535
- name: Run unit test / Test coverage with Scrutinizer
3636
run: |
3737
pytest
@@ -69,6 +69,6 @@ jobs:
6969
- name: Run unit tests
7070
run: |
7171
pytest
72-
- name: Check style against standards using prospector
72+
- name: Check style against standards using prospector (only warn for now, but never fail)
7373
shell: bash -l {0}
74-
run: prospector --profile linter_profile -o grouped -o pylint:pylint-report.txt
74+
run: prospector --profile linter_profile -o grouped -o pylint:pylint-report.txt --zero-exit

0 commit comments

Comments
 (0)