From f1a24af33513547f2fda204ddec7db5a65202093 Mon Sep 17 00:00:00 2001 From: bronsen Date: Thu, 13 Mar 2025 17:14:26 +0100 Subject: [PATCH] [tests] Tell pytest where/how to find tests --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..533de0e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +[tool.pytest.ini_options] +pythonpath = "." +python_files = [ + "test_*.py", + "tests.py" +] +