From 7c2ffccc9785e1b93cfa8d2d5ae719d26a29e670 Mon Sep 17 00:00:00 2001 From: Clayton Brown Date: Tue, 21 Apr 2026 16:58:04 +1000 Subject: [PATCH] test: add pytest configuration to pyproject.toml --- pyproject.toml | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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", +]