From ad59e6026964b61c91f02b6330859400241d41b1 Mon Sep 17 00:00:00 2001 From: Jeffrey Sperling Date: Mon, 13 Apr 2026 11:52:12 -0700 Subject: [PATCH] chore: gitignore dev artifacts (.venv, .coverage, htmlcov, .memsearch) pyproject.toml declares pytest-cov as a dev dependency and configures [tool.coverage.run], but the generated .coverage database and htmlcov/ report directory are not gitignored. Also add .venv/ (standard Python virtualenv) and .memsearch/ (session memory) to keep the working tree clean for contributors. --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 7833a3b..8ba4d4b 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,7 @@ variants/open/references/research.md __pycache__/ *.pyc mise.toml +.memsearch/ +.venv/ +.coverage +htmlcov/