Skip to content

Commit 596bc07

Browse files
committed
minor fix
1 parent bf9ab70 commit 596bc07

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/upload-artifact@v4
2222
with:
2323
name: windows
24-
path: output
24+
path: output/results.csv
2525
build_linux:
2626
runs-on: ubuntu-22.04
2727
steps:
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/upload-artifact@v4
4545
with:
4646
name: linux
47-
path: output
47+
path: output/results.csv
4848
build_darwin:
4949
runs-on: macos-latest
5050
steps:
@@ -60,7 +60,7 @@ jobs:
6060
- uses: actions/upload-artifact@v4
6161
with:
6262
name: darwin
63-
path: output
63+
path: output/results.csv
6464

6565
merge:
6666
runs-on: ubuntu-latest

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,5 @@ marimo/_lsp/
207207
__marimo__/
208208

209209
pocketpy
210-
output
210+
output
211+
benchmark_results.csv

scripts/run_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ def test_dir(path, prefix: str):
7676
# tag as index
7777
df = pd.DataFrame(data)
7878
df.set_index('tag', inplace=True, drop=True)
79-
df.to_csv('output/benchmark_results.csv', index=True)
79+
df.to_csv('output/results.csv', index=True)
8080

8181
print("ALL TESTS PASSED")

0 commit comments

Comments
 (0)