Skip to content

Commit 7bc4908

Browse files
authored
Benchmark workflow upload hidden xlsx files (#4259)
Benchmark workflow upload hidden xlsx files
1 parent f4a64e3 commit 7bc4908

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/perf_benchmark_v2.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181
GH_CTX_REF_NAME: ${{ github.ref_name }}
8282
GH_CTX_SHA: ${{ github.sha }}
8383
run: |
84+
rm -rf .tox
8485
export TASK="${{ matrix.task }}"
8586
export DATA_ROOT="${{ inputs.data-root }}"
8687
export NUM_REPEAT="${{ inputs.num-repeat }}"
@@ -95,4 +96,5 @@ jobs:
9596
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
9697
with:
9798
name: benchmark-results-${{ matrix.task }}
98-
path: ${{ github.workspace }}/.tox/${{ matrix.task }}-*.*
99+
include-hidden-files: true
100+
path: ${{ github.workspace }}/.tox/${{ matrix.task }}-*.xlsx

tests/perf_v2/run.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,3 @@
8888
"Please check if the benchmark tests have been run successfully."
8989
)
9090
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

Comments
 (0)