| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
tests_integ/evaluation/test_third_party_adapters.py imports deepeval and autoevals, but the evaluation matrix group only installed strands-agents-evals. The bare imports in the autouse fixtures raised ModuleNotFoundError, which pytest reports as errors (not skips), failing the job with exit code 1. Both packages are already declared as optional extras in pyproject.toml.
|
Claude Security Review: no high-confidence findings. (run) |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
Problem
Test (evaluation) in the Secure Integration test workflow is failing on main (run 30494098538):
test_third_party_adapters.py (added in #568) imports deepeval and autoevals, but the evaluation matrix group only installed strands-agents-evals. The bare import calls in the autouse fixtures raise ModuleNotFoundError, which pytest reports as errors rather than skips, so the job exits 1.
Both packages are already declared as optional extras in pyproject.toml ([deepeval], [autoevals]) — they were simply never installed in that job.
Change
One line — add both packages to the evaluation group's extra-deps.
Testing