test: add pytest configuration to pyproject.toml

This commit is contained in:
Clayton Brown 2026-04-21 16:58:04 +10:00
parent 051ba93bc3
commit 7c2ffccc97
1 changed files with 12 additions and 0 deletions

View File

@ -40,3 +40,15 @@ include = ["tradingagents*", "cli*"]
[tool.setuptools.package-data] [tool.setuptools.package-data]
cli = ["static/*"] cli = ["static/*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
markers = [
"unit: fast isolated unit tests",
"integration: tests requiring external services",
"smoke: quick sanity-check tests",
]
filterwarnings = [
"ignore::DeprecationWarning",
]