From 11a07b23d2691c0263a255ca17c768c9cbee96d7 Mon Sep 17 00:00:00 2001 From: Eddie Nielsen <“ed”@edcore.dk”> Date: Mon, 23 Mar 2026 15:41:53 +0000 Subject: [PATCH] feat(scan): exclude common non-project directories during discovery --- dockervault/pytest.ini | 4 ---- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100644 dockervault/pytest.ini diff --git a/dockervault/pytest.ini b/dockervault/pytest.ini deleted file mode 100644 index 156da35..0000000 --- a/dockervault/pytest.ini +++ /dev/null @@ -1,4 +0,0 @@ -[pytest] -testpaths = tests -addopts = -q -pythonpath = . diff --git a/pyproject.toml b/pyproject.toml index 3a11e70..3b21087 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,7 +45,7 @@ include-package-data = true include = ["dockervault*"] [tool.pytest.ini_options] -testpaths = ["tests"] +testpaths = ["dockervault/tests"] pythonpath = ["."] addopts = "-q"