From b220bc7d7e9b784ce9598d86682d0252e40c81d1 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 6 Dec 2023 11:59:45 +0100 Subject: [PATCH] narrow down pytest search dirs to reduce execution time, especially in docker --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 24f1aa4..ec0809f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,4 +20,5 @@ target-version = "py311" [tool.pytest.ini_options] python_functions = "test_* setup_*" -norecursedirs = "previous-work recipes" \ No newline at end of file +norecursedirs = ".* previous-work recipes" +testpaths = "tests" \ No newline at end of file