From 82ebd8ed1a96e924448a7c8f9ed0e58b9b920ebb Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 25 Jun 2026 13:18:32 -0700 Subject: [PATCH] test(ocr): include rust bridge coverage in OCR shard --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d532d3106e5..464cdcfc861 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1043,7 +1043,9 @@ jobs: name: Run tests command: | mkdir -p test-results - TEST_FILES=$(circleci tests glob "tests/ocr_tests/**/test_*.py") + TEST_FILES=$(printf "%s\n%s\n" \ + "$(circleci tests glob "tests/ocr_tests/**/test_*.py")" \ + "tests/test_litellm/ocr/test_rust_bridge.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 \