File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -85,11 +85,15 @@ jobs:
85
85
sleep 10 # time to settle
86
86
invoke ${{matrix.test-type}}-tests
87
87
88
- - uses : actions/upload-artifact@v4
89
- if : success() || failure()
88
+ - name : Upload test results and profiling data
89
+ uses : actions/upload-artifact@v4
90
90
with :
91
91
name : pytest-results-${{matrix.test-type}}-${{matrix.connection-type}}-${{matrix.python-version}}
92
- path : ' ${{matrix.test-type}}*results.xml'
92
+ path : |
93
+ '${{matrix.test-type}}*-results.xml'
94
+ '${{matrix.test-type}}-profile.out'
95
+ if-no-files-found : error
96
+ retention-days : 10
93
97
94
98
- name : Upload codecov coverage
95
99
uses : codecov/codecov-action@v4
@@ -149,6 +153,8 @@ jobs:
149
153
path : |
150
154
'${{matrix.test-type}}*-results.xml'
151
155
'${{matrix.test-type}}-profile.out'
156
+ if-no-files-found : error
157
+ retention-days : 10
152
158
153
159
- name : Upload codecov coverage
154
160
uses : codecov/codecov-action@v4
You can’t perform that action at this time.
0 commit comments