ci: install deepeval and autoevals for evaluation integ tests - #608
Merged
Conversation
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.
Contributor
|
Claude Security Review: no high-confidence findings. (run) |
This was referenced Jul 30, 2026
tejaskash
approved these changes
Jul 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
Test (evaluation)in the Secure Integration test workflow is failing onmain(run 30494098538):test_third_party_adapters.py(added in #568) importsdeepevalandautoevals, but theevaluationmatrix group only installedstrands-agents-evals. The bareimportcalls in the autouse fixtures raiseModuleNotFoundError, 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
python3 -c "yaml.safe_load(...)"— workflow YAML parses, matrix entry correctdeepeval==4.1.4andautoevalsboth resolve and import cleanly, no conflicts withstrands-agents-evals==1.0.3ModuleNotFoundErrors are gone, and confirmed the residual OpenAI-credential failures documented above