From fea9f47d368cf2fadabbe1cdf7aea97c01dd5697 Mon Sep 17 00:00:00 2001 From: Nils Vu Date: Thu, 7 May 2026 17:29:08 +0200 Subject: [PATCH] Discover lower-case test files Avoid silently ignoring them. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6e4c4d3..0464b3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,4 +42,4 @@ line_length = 80 [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-ra" -python_files = ["Test_*.py"] +python_files = ["Test_*.py", "test_*.py"]