From cafcc5537b7456be7d535be0920bd1c18f32ecdb Mon Sep 17 00:00:00 2001 From: Steve Yegge Date: Thu, 20 Nov 2025 21:37:51 -0500 Subject: [PATCH] Clean up beads-mcp .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .pytest_cache/ to ignored test artifacts - Reorganize sections for clarity - Move .coverage to testing artifacts section 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- integrations/beads-mcp/.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/integrations/beads-mcp/.gitignore b/integrations/beads-mcp/.gitignore index 8bc6a1b1..5cecdfc6 100644 --- a/integrations/beads-mcp/.gitignore +++ b/integrations/beads-mcp/.gitignore @@ -6,9 +6,12 @@ wheels/ *.egg-info __pycache__ +# Testing artifacts +.pytest_cache/ +.coverage + # Virtual environments .venv /.env /CLAUDE.md /TODO.md -/.coverage