Skip to content

Commit

Permalink
fix: [parsers] ignore small files in not processed files listing
Browse files Browse the repository at this point in the history
cvandeplas committed Nov 14, 2024

Verified

This commit was signed with the committer’s verified signature. The key has expired.
cvandeplas Christophe Vandeplas
1 parent 67435c6 commit 673e878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_parsers.py
Original file line number Diff line number Diff line change
@@ -85,7 +85,7 @@ def test_parsers_no_parser_yet(self):
covered = True
break

if not covered and os.path.getsize(file) > 0:
if not covered and os.path.getsize(file) > 10:
not_covered.append(file)
print(f"File not yet parsed: {file}")

0 comments on commit 673e878

Please sign in to comment.