We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 899db28 commit 85978daCopy full SHA for 85978da
acceptance/bin/diff.py
@@ -31,8 +31,8 @@ def main():
31
print(f"Regex error for pattern {r}: {e}", file=sys.stderr)
32
33
if d1.is_dir() and d2.is_dir():
34
- files1 = [str(p.relative_to(d1)) for p in d1.rglob("*") if p.is_file()]
35
- files2 = [str(p.relative_to(d2)) for p in d2.rglob("*") if p.is_file()]
+ files1 = [str(p.relative_to(d1)) for p in d1.rglob("*") if p.is_file() and not p.name.startswith("LOG")]
+ files2 = [str(p.relative_to(d2)) for p in d2.rglob("*") if p.is_file() and not p.name.startswith("LOG")]
36
else:
37
assert d1.is_file(), d1
38
assert d2.is_file(), d2
0 commit comments