From 0157d5f6ada64bfa9c369fc83ebd3f096bfc15d8 Mon Sep 17 00:00:00 2001 From: Safi Date: Sat, 16 May 2026 14:30:38 +0100 Subject: [PATCH] Add pytest testpaths to stop crawling external repos in subdirs Co-Authored-By: Claude Sonnet 4.6 --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 365db8e6..29ec5e67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -80,6 +80,14 @@ include-package-data = false [tool.setuptools.package-data] graphify = ["skill.md", "skill-codex.md", "skill-opencode.md", "skill-aider.md", "skill-copilot.md", "skill-claw.md", "skill-windows.md", "skill-droid.md", "skill-trae.md", "skill-kiro.md", "skill-vscode.md", "skill-pi.md"] +[tool.pytest.ini_options] +testpaths = ["tests"] +norecursedirs = [ + "graphify-benchmark", "graphify_eval", "graphify_test", + "worked", "llm-stack-corpus", "llm-stack-demo", "product-site", + "scripts", "ebook", ".github", "dist", "build", +] + [tool.bandit] skips = ["B404"]