feat: Ignore files in .meta and .docs directories

This commit is contained in:
Paul Gauthier (aider) 2024-12-19 07:23:28 -08:00
parent 616c4a9a53
commit 370b45bb35

View file

@ -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)