From 2e8153f707c84a7f68661840cf0cf8bac990c1fb Mon Sep 17 00:00:00 2001 From: jonasfreimuth <68993915+jonasfreimuth@users.noreply.github.com> Date: Wed, 11 Oct 2023 00:22:52 +0200 Subject: [PATCH] Add pyproject.toml The whole reason is to silence the pytest warnings about undefined optional marks on pytests. --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..f05565b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,4 @@ +[tool.pytest.ini_options] +markers = [ + "optional: marks tests as optional (deselect with '-m \"not optional\"')", +] \ No newline at end of file