We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1b21e3 commit 2297255Copy full SHA for 2297255
2 files changed
.circleci/continue_config.yml
@@ -93,9 +93,13 @@ 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
+ - unless:
+ condition:
+ equal: ["3.9", << parameters.python_version >>]
99
+ steps:
100
+ - run:
101
+ name: Exercise the benchmarks
102
+ command: make benchmark-ci
103
104
name: Run cicd tests
105
command: make cicd-test
Makefile
@@ -248,4 +248,4 @@ 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
+ python benchmarks/lsp_render_model_bench.py --debug-single-value --processes=1
0 commit comments