From b1415708127381997fd7a4e4a525a6879ad7f6aa Mon Sep 17 00:00:00 2001 From: jariy17 Date: Thu, 30 Jul 2026 22:32:54 +0000 Subject: [PATCH] ci: install deepeval and autoevals for evaluation integ tests 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. --- .github/workflows/integration-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index e3194e2d..3e65b7ed 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -120,7 +120,7 @@ jobs: - group: evaluation path: tests_integ/evaluation timeout: 15 - extra-deps: "strands-agents-evals" + extra-deps: "strands-agents-evals deepeval autoevals" ignore: "" - group: services path: tests_integ/services