From ff310a7639d256f517ad325fd073d91296b5269f Mon Sep 17 00:00:00 2001 From: Kevin Turcios Date: Tue, 21 Apr 2026 06:41:31 -0500 Subject: [PATCH] Add [tool.codeflash] config to layered eval template The E2E pipeline needs module-root, tests-root, and test-framework to discover and run tests in src-layout projects. --- evals/templates/layered/pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/evals/templates/layered/pyproject.toml b/evals/templates/layered/pyproject.toml index 2b08fe0..9d7c4ba 100644 --- a/evals/templates/layered/pyproject.toml +++ b/evals/templates/layered/pyproject.toml @@ -14,6 +14,11 @@ packages = ["src/processor"] [tool.pytest.ini_options] testpaths = ["tests"] +[tool.codeflash] +module-root = "src" +tests-root = "tests" +test-framework = "pytest" + [dependency-groups] dev = [ "pytest>=9.0.2",