From 702101bfe22f7c4a492f231752a9f617733e332a Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 8 Aug 2026 11:39:14 -0700 Subject: [PATCH 1/2] ignore the .venv directory On klone the venv is created inside the repo with create_cdsc_venv, so it otherwise shows up as untracked in every git status. Co-Authored-By: Claude Opus 5 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 88a3586..03e5a21 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,6 @@ uv.lock # Python build and test output __pycache__/ /test/test_output/ + +# Virtualenv (created with create_cdsc_venv on klone) +/.venv/ From 2bee25488ba516dcb676befd221bee7e330de4cc Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Sat, 8 Aug 2026 11:45:04 -0700 Subject: [PATCH 2/2] correct the test suite runtime in the README The suite completes in about ninety seconds, not fifteen minutes. The old figure discouraged running it as part of an ordinary change. Co-Authored-By: Claude Opus 5 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f4a588f..2a39481 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ From the repository root: Run the suite from the root—some tests open fixture files by paths relative to it. The full suite processes several real dumps from -`test/dumps/` and takes around fifteen minutes; expected outputs live in +`test/dumps/` and takes a couple of minutes; expected outputs live in `test/baseline_output/`. ## Authors