mirror of
https://github.com/codeflash-ai/codeflash-agent.git
synced 2026-05-04 18:25:19 +00:00
The E2E pipeline needs module-root, tests-root, and test-framework to discover and run tests in src-layout projects.
25 lines
423 B
TOML
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",
|
|
]
|