From 34c7d9d0c44386ed09a06988680ab600494fcc15 Mon Sep 17 00:00:00 2001 From: raj_mathe Date: Mon, 18 Apr 2022 19:04:55 +0200 Subject: [PATCH] master > master: code-py - unittest config --- code/python/pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/python/pyproject.toml diff --git a/code/python/pyproject.toml b/code/python/pyproject.toml new file mode 100644 index 0000000..b691501 --- /dev/null +++ b/code/python/pyproject.toml @@ -0,0 +1,8 @@ +[tool.pytest.ini_options] +minversion = "7.1.1" +testpaths = [ + "tests", +] +python_files = [ + "**/test_*.py", +]