mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-25 14:55:00 +00:00
feat: Ignore files in .meta and .docs directories
This commit is contained in:
parent
616c4a9a53
commit
370b45bb35
1 changed files with 3 additions and 1 deletions
|
@ -673,7 +673,9 @@ def run_test_real(
|
|||
]
|
||||
)
|
||||
|
||||
# add all the files under testdir/ .meta and .docs to ignore_files ai!
|
||||
# Add all files under .meta and .docs directories
|
||||
ignore_files.update(str(p) for p in testdir.glob(".meta/**/*"))
|
||||
ignore_files.update(str(p) for p in testdir.glob(".docs/**/*"))
|
||||
|
||||
# Also ignore test & example files
|
||||
ignore_files.update(test_files)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue