From 4731f5f19ae97922aa863ceba30726401b68bb59 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 23:54:44 +0000 Subject: [PATCH] ci: simplify workflow and add pytest config --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 9ac0eed..bce20eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,3 +36,10 @@ cli-explain-fix = "cli_explain_fix.main:main" [tool.setuptools.packages.find] where = ["src"] + +[tool.pytest.ini_options] +testpaths = ["tests"] +python_files = ["test_*.py"] +python_classes = ["Test*"] +python_functions = ["test_*"] +addopts = "-v --tb=short"