From 6f266c00907d6422a2d5d1c11fdb12ec943a510a Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Wed, 11 Dec 2024 20:38:11 -0800 Subject: [PATCH] fix: Skip test fixture watch files in blame script --- scripts/blame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/blame.py b/scripts/blame.py index fb939dd98..b245b3c17 100755 --- a/scripts/blame.py +++ b/scripts/blame.py @@ -35,7 +35,7 @@ def blame(start_tag, end_tag=None): or f in website_files ] files = [f for f in files if not f.endswith("prompts.py")] - # skip tests/fixtures/watch* ai! + files = [f for f in files if not f.startswith("tests/fixtures/watch")] all_file_counts = {} grand_total = defaultdict(int)