Skip to content

Commit f9a0cc8

Browse files
committed
ci: fix benchmark running
- by skipping in 3.9 for time being - newer google libraries print warnings which break the lsp stream
1 parent a1b21e3 commit f9a0cc8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
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

0 commit comments

Comments
 (0)