From 520858f6ace72b1f35ab17d3508dd3274cbf32d7 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Tue, 10 Jan 2023 20:53:27 +0100 Subject: [PATCH] added example pyproject.toml --- 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..6bfb922 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,7 @@ +# pyproject.toml +[tool.pytest.ini_options] +minversion = "6.0" +addopts = "-ra -q" +testpaths = [ + "tests", +]