File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -170,9 +170,11 @@ jobs:
170170 run : |
171171 pattern=$(cat ${{ steps.extract_tests.outputs.pattern_file }})
172172 if [ -z "$pattern" ]; then
173- python -m pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx" tests/${{ matrix.module }}
173+ python -m pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx" tests/${{ matrix.module }} \
174+ --make-reports=tests_torch_cuda_${{ matrix.module }}_stats
174175 else
175- python -m pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx and $pattern" tests/${{ matrix.module }}
176+ python -m pytest -n 1 -sv --max-worker-restart=0 --dist=loadfile -k "not Flax and not Onnx and $pattern" tests/${{ matrix.module }} \
177+ --make-reports=tests_torch_cuda_${{ matrix.module }}_stats
176178 fi
177179
178180 - name : Failure short reports
You can’t perform that action at this time.
0 commit comments