mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Skip test fixture watch files in blame script
This commit is contained in:
parent
baa7352ca6
commit
6f266c0090
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def blame(start_tag, end_tag=None):
|
||||||
or f in website_files
|
or f in website_files
|
||||||
]
|
]
|
||||||
files = [f for f in files if not f.endswith("prompts.py")]
|
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 = {}
|
all_file_counts = {}
|
||||||
grand_total = defaultdict(int)
|
grand_total = defaultdict(int)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue