codeflash-agent/evals/templates/layered/pyproject.toml
Kevin Turcios ff310a7639 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.
2026-04-21 06:41:31 -05:00

25 lines
423 B
TOML

[project]
name = "record-processor"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
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",
]