From a7ebc12673b2f0f03bbaa10608d6e76187851905 Mon Sep 17 00:00:00 2001 From: mateo-berri <277851410+mateo-berri@users.noreply.github.com> Date: Sat, 12 Sep 2026 15:53:03 -0700 Subject: [PATCH] ci: drop the removed rust bridge test path from the ocr job --- .circleci/config.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 32d2cf0390c..84d8f48b4be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1084,9 +1084,7 @@ jobs: name: Run tests command: | mkdir -p test-results - TEST_FILES=$(printf "%s\n%s\n" \ - "$(circleci tests glob "tests/ocr_tests/**/test_*.py")" \ - "tests/test_litellm/ocr/test_rust_bridge.py") + TEST_FILES=$(circleci tests glob "tests/ocr_tests/**/test_*.py") echo "$TEST_FILES" | circleci tests run \ --verbose \ --command="tr ' ' '\\n' | awk '/\\.py/ {print; next} {sub(/\\.[A-Z][^.]*$/, \"\"); gsub(/\\./, \"/\"); print \$0 \".py\"}' | xargs uv run --no-sync python -m pytest \