File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -144,6 +144,13 @@ jobs:
144
144
cd tests/keras2onnx_applications/nightly_build
145
145
python run_all_v2.py --exclude "test_keras_applications_v2.py"
146
146
147
+ - name : Upload Test Results
148
+ if : always()
149
+ uses : actions/upload-artifact@v3
150
+ with :
151
+ name : Test Results (${{ matrix.tf_version }}-${{ matrix.python_version }}-${{ matrix.os }})
152
+ path : pytest.xml
153
+
147
154
148
155
publish-test-results :
149
156
name : " Publish Tests Results to Github"
Original file line number Diff line number Diff line change @@ -104,6 +104,14 @@ jobs:
104
104
python -c "import onnxconverter_common"
105
105
pytest tests/keras2onnx_unit_tests --doctest-modules --junitxml=junit/test-results.xml
106
106
107
+ - name : Upload Test Results
108
+ if : always()
109
+ uses : actions/upload-artifact@v3
110
+ with :
111
+ name : Test Results (${{ matrix.tf_version }}-${{ matrix.python_version }}-${{ matrix.os }})
112
+ path : pytest.xml
113
+
114
+
107
115
publish-test-results :
108
116
name : " Publish Tests Results to Github"
109
117
needs : run_tests
Original file line number Diff line number Diff line change 65
65
python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append
66
66
ls
67
67
68
+ - name : Upload Test Results
69
+ if : always()
70
+ uses : actions/upload-artifact@v3
71
+ with :
72
+ name : Test Results (${{ matrix.tf_version }}-${{ matrix.python_version }}-${{ matrix.os }})
73
+ path : pytest.xml
74
+
75
+
68
76
publish-test-results :
69
77
name : " Publish Tests Results to Github"
70
78
needs : run_tests
77
85
- name : Publish Test Results
78
86
uses : EnricoMi/publish-unit-test-result-action@v2
79
87
with :
80
- files : " **/test-results .xml"
88
+ files : " artifacts/ **/* .xml"
You can’t perform that action at this time.
0 commit comments