From f9a0cc823d74ddd5e345953bcaeafa8314ed3514 Mon Sep 17 00:00:00 2001 From: Ben King <9087625+benfdking@users.noreply.github.com> Date: Thu, 30 Oct 2025 16:40:20 -0600 Subject: [PATCH] ci: fix benchmark running - by skipping in 3.9 for time being - newer google libraries print warnings which break the lsp stream --- .circleci/continue_config.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index 42c7a28474..5a240b85e4 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -93,9 +93,13 @@ jobs: - run: name: Run linters and code style checks command: make py-style - # - run: - # name: Exercise the benchmarks - # command: make benchmark-ci + - unless: + condition: + equal: ["3.9", << parameters.python_version >>] + steps: + - run: + name: Exercise the benchmarks + command: make benchmark-ci - run: name: Run cicd tests command: make cicd-test