From e508f3708926c588254ae739467bf9f878ca5d7c Mon Sep 17 00:00:00 2001 From: profitroll Date: Sun, 6 Aug 2023 02:07:07 +0200 Subject: [PATCH] Added pytest to pyproject --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2d4d254..44c6e6b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -52,3 +52,9 @@ target-version = ['py38', 'py39', 'py310', 'py311'] [tool.isort] profile = "black" + +[tool.pytest.ini_options] +minversion = "6.0" +python_files = ["test_*.py"] +pythonpath = "." +testpaths = ["tests"]