We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23f66f9 commit 0f864feCopy full SHA for 0f864fe
2 files changed
.circleci/continue_config.yml
@@ -93,9 +93,9 @@ jobs:
93
- run:
94
name: Run linters and code style checks
95
command: make py-style
96
- # - run:
97
- # name: Exercise the benchmarks
98
- # command: make benchmark-ci
+ - run:
+ name: Exercise the benchmarks
+ command: make benchmark-ci
99
100
name: Run cicd tests
101
command: make cicd-test
Makefile
@@ -248,4 +248,5 @@ vscode-generate-openapi:
248
cd vscode/react && pnpm run generate:api
249
250
benchmark-ci:
251
- python benchmarks/lsp_render_model_bench.py --debug-single-value
+ # 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