Reduce garbage errors during regression checks.

pull/497/head
Alexander Gessler 2015-03-15 01:02:18 +01:00 committed by Alexander Gessler
parent 94fd8c9c16
commit e976cc2117
2 changed files with 2 additions and 2 deletions

View File

@ -171,7 +171,7 @@ def process_dir(d, outfile_results, zipin, result):
process_dir(fullpath, outfile_results, zipin, result)
continue
if f in settings.files_to_ignore:
if f in settings.files_to_ignore or os.path.splitext(f)[1] in settings.exclude_extensions:
print("Ignoring " + f)
continue

View File

@ -62,7 +62,7 @@ files_to_ignore = ["pond.0.ply"]
exclude_extensions = [
".lws", ".assbin", ".assxml", ".txt", ".md",
".jpeg", ".jpg", ".png", ".gif", ".tga", ".bmp",
".skeleton", ".skeleton.xml"
".skeleton", ".skeleton.xml", ".license"
]
# -------------------------------------------------------------------------------