diff --git a/pyproject.toml b/pyproject.toml index 98385e32..11061163 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,3 +40,15 @@ include = ["tradingagents*", "cli*"] [tool.setuptools.package-data] 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", +]