Skip to content

Commit b364e98

Browse files
committed
Remove continue on error
1 parent ffbca61 commit b364e98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,14 @@ jobs:
112112

113113
- name: Run tests
114114
id: run_tests
115-
continue-on-error: true
116115
run: |
117116
mkdir reports/
118117
report_file="reports/${{ env.sanitized_test_dir }}.txt"
119118
pytest ${{ matrix.test_dir }} | tee $report_file
120119
exit ${PIPESTATUS[0]}
121120
122121
- name: Upload test report as artifact
122+
if: always()
123123
uses: actions/upload-artifact@v4
124124
with:
125125
name: ${{ env.sanitized_test_dir }}

0 commit comments

Comments
 (0)