Skip to content

Commit 3a3c766

Browse files
authored
FIX: always upload test results (#468)
1 parent 74bb467 commit 3a3c766

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci_cd.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,20 +142,23 @@ jobs:
142142
pytest -v
143143
144144
- name: Upload integration test logs
145+
if: always()
145146
uses: actions/upload-artifact@v3
146147
with:
147148
name: integration-test-logs-${{ runner.os }}
148149
path: tests/integration/logs
149150
retention-days: 7
150151

151152
- name: Upload PyVista generated images (cache and results)
153+
if: always()
152154
uses: actions/upload-artifact@v3
153155
with:
154156
name: pytest-pyvista-images-${{ runner.os }}
155157
path: tests/integration/image_cache
156158
retention-days: 7
157159

158160
- name: Upload Coverage Results
161+
if: always()
159162
uses: actions/upload-artifact@v3
160163
with:
161164
name: coverage-html
@@ -304,13 +307,15 @@ jobs:
304307
requires-xvfb: true
305308

306309
- name: Upload integration test logs
310+
if: always()
307311
uses: actions/upload-artifact@v3
308312
with:
309313
name: integration-test-logs-${{ runner.os }}
310314
path: tests/integration/logs
311315
retention-days: 7
312316

313317
- name: Upload PyVista generated images (cache and results)
318+
if: always()
314319
uses: actions/upload-artifact@v3
315320
with:
316321
name: pytest-pyvista-images-${{ runner.os }}

0 commit comments

Comments
 (0)