We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0acdaed commit f4a64e3Copy full SHA for f4a64e3
.github/workflows/perf_benchmark_v2.yaml
@@ -81,7 +81,6 @@ jobs:
81
GH_CTX_REF_NAME: ${{ github.ref_name }}
82
GH_CTX_SHA: ${{ github.sha }}
83
run: |
84
- rm -rf .tox
85
export TASK="${{ matrix.task }}"
86
export DATA_ROOT="${{ inputs.data-root }}"
87
export NUM_REPEAT="${{ inputs.num-repeat }}"
tests/perf_v2/run.py
@@ -88,3 +88,7 @@
88
"Please check if the benchmark tests have been run successfully."
89
)
90
raise ValueError(msg)
91
+
92
+ # list all xlsx files under summary_file_root
93
+ for xlsx_file in summary_file_root.rglob("*.xlsx"):
94
+ logger.info(f"Saved summary to {xlsx_file.resolve()}")
0 commit comments