test: add pytest configuration to pyproject.toml
This commit is contained in:
parent
051ba93bc3
commit
7c2ffccc97
|
|
@ -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",
|
||||||
|
]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue