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:
144144 cd tests/keras2onnx_applications/nightly_build
145145 python run_all_v2.py --exclude "test_keras_applications_v2.py"
146146
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+
147154
148155 publish-test-results :
149156 name : " Publish Tests Results to Github"
Original file line number Diff line number Diff line change @@ -104,6 +104,14 @@ jobs:
104104 python -c "import onnxconverter_common"
105105 pytest tests/keras2onnx_unit_tests --doctest-modules --junitxml=junit/test-results.xml
106106
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+
107115 publish-test-results :
108116 name : " Publish Tests Results to Github"
109117 needs : run_tests
Original file line number Diff line number Diff line change 6565 python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append
6666 ls
6767
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+
6876 publish-test-results :
6977 name : " Publish Tests Results to Github"
7078 needs : run_tests
7785 - name : Publish Test Results
7886 uses : EnricoMi/publish-unit-test-result-action@v2
7987 with :
80- files : " **/test-results .xml"
88+ files : " artifacts/ **/* .xml"
You can’t perform that action at this time.
0 commit comments