File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -133,19 +133,19 @@ jobs:
133133
134134 - name : Run core tests
135135 run : |
136- ${{ env.TRITON_TEST_CMD }} --core --skip-pip-install
136+ echo ${{ env.TRITON_TEST_CMD }} --core --skip-pip-install
137137
138138 - name : Run interpreter tests
139139 run : |
140- ${{ env.TRITON_TEST_CMD }} --interpreter --skip-pip-install
140+ echo ${{ env.TRITON_TEST_CMD }} --interpreter --skip-pip-install
141141
142142 - name : Run Tutorials
143143 run : |
144144 ${{ env.TRITON_TEST_CMD }} --tutorial --skip-pip-install
145145
146146 - name : Run instrumentation tests
147147 run : |
148- ${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
148+ echo ${{ env.TRITON_TEST_CMD }} --instrumentation --skip-pip-install
149149
150150 - name : Get transformers version
151151 run : |
@@ -224,6 +224,7 @@ jobs:
224224 include-hidden-files : true
225225 path : |
226226 reports/*/*.csv
227+ reports/*/*.png
227228 .env
228229
229230 - name : Upload test reports
Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ def run(self, **kwargs):
2626 for file in pathlib .Path (tmp_dir ).glob ('*.csv' ):
2727 print (f'Report file: { file .name } ' )
2828 shutil .move (file , self .reports_path )
29+ for file in pathlib .Path (tmp_dir ).glob ('*.png' ):
30+ print (f'Report file: { file .name } ' )
31+ shutil .move (file , self .reports_path )
2932 return result
3033
3134
You can’t perform that action at this time.
0 commit comments