Skip to content

Commit 0f864fe

Browse files
committed
ci: fix benchmark running
1 parent 23f66f9 commit 0f864fe

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.circleci/continue_config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ jobs:
9393
- run:
9494
name: Run linters and code style checks
9595
command: make py-style
96-
# - run:
97-
# name: Exercise the benchmarks
98-
# command: make benchmark-ci
96+
- run:
97+
name: Exercise the benchmarks
98+
command: make benchmark-ci
9999
- run:
100100
name: Run cicd tests
101101
command: make cicd-test

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,4 +248,5 @@ vscode-generate-openapi:
248248
cd vscode/react && pnpm run generate:api
249249

250250
benchmark-ci:
251-
python benchmarks/lsp_render_model_bench.py --debug-single-value
251+
# Use --processes=1 to avoid Python 3.9 asyncio subprocess deadlock in multiprocessing
252+
python benchmarks/lsp_render_model_bench.py --debug-single-value --processes=1

0 commit comments

Comments
 (0)