mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-27 12:46:06 +00:00
Meta: Exclude crash and screenshot tests from newline-at-eof requirement
This commit is contained in:
parent
4d34095b0a
commit
7c29db6ab0
Notes:
github-actions[bot]
2025-08-08 15:00:37 +00:00
Author: https://github.com/AtkinsSJ
Commit: 7c29db6ab0
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5776
1 changed files with 4 additions and 0 deletions
|
@ -11,10 +11,14 @@ RE_RELEVANT_FILE_EXTENSION = re.compile("\\.(cpp|h|mm|swift|gml|html|js|css|sh|p
|
|||
def should_check_file(filename):
|
||||
if not RE_RELEVANT_FILE_EXTENSION.search(filename):
|
||||
return False
|
||||
if filename.startswith("Tests/LibWeb/Crash/"):
|
||||
return False
|
||||
if filename.startswith("Tests/LibWeb/Layout/"):
|
||||
return False
|
||||
if filename.startswith("Tests/LibWeb/Ref/"):
|
||||
return False
|
||||
if filename.startswith("Tests/LibWeb/Screenshot/"):
|
||||
return False
|
||||
if filename.startswith("Tests/LibWeb/Text/"):
|
||||
return False
|
||||
if filename.startswith("Meta/CMake/vcpkg/overlay-ports/"):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue