From 60fb0d0cedd9f0aaeca7101dddf0848f8872ccc3 Mon Sep 17 00:00:00 2001 From: Kimoon Han <98246499+kmnhan@users.noreply.github.com> Date: Mon, 8 Apr 2024 20:24:59 +0900 Subject: [PATCH] tests: reduce test time by specifying explicit path This will not trigger directory recursion, so tests will run a bit faster --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 0b7822a1..f02df23e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -190,3 +190,6 @@ docstring-code-line-length = "dynamic" [tool.isort] profile = "black" + +[tool.pytest.ini_options] +testpaths = "tests"