Skip to content

Commit 069e7a9

Browse files
Fix benchmark CI working directory
1 parent 6bfc9a6 commit 069e7a9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ jobs:
3131
with:
3232
python-version: "3.11"
3333
- name: Install bench extras
34-
working-directory: kll_sketch
3534
run: |
3635
python -m pip install --upgrade pip
37-
python -m pip install -e .[bench]
36+
python -m pip install -e './kll_sketch[bench]'
3837
- name: Run smoke benchmark
39-
working-directory: kll_sketch
4038
run: |
4139
python benchmarks/bench_kll.py \
4240
--outdir bench_out \
@@ -49,4 +47,4 @@ jobs:
4947
uses: actions/upload-artifact@v4
5048
with:
5149
name: bench-out
52-
path: kll_sketch/bench_out
50+
path: bench_out

0 commit comments

Comments
 (0)