Skip to content

Commit 2297255

Browse files
committed
ci: fix benchmark running
- by skipping in 3.9 for time being - hangs because of issue in
1 parent a1b21e3 commit 2297255

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.circleci/continue_config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,13 @@ 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+
- unless:
97+
condition:
98+
equal: ["3.9", << parameters.python_version >>]
99+
steps:
100+
- run:
101+
name: Exercise the benchmarks
102+
command: make benchmark-ci
99103
- run:
100104
name: Run cicd tests
101105
command: make cicd-test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,4 +248,4 @@ 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+
python benchmarks/lsp_render_model_bench.py --debug-single-value --processes=1

0 commit comments

Comments
 (0)