1
0
Fork 0
mirror of https://github.com/matomo-org/matomo-icons.git synced 2024-09-19 17:03:45 +02:00

enable test if icons are square

This commit is contained in:
Lukas Winkler 2017-05-18 19:01:48 +02:00
parent ceccfc361f
commit 8fc4b292a3

View file

@ -35,6 +35,11 @@ placeholder_icon_filenames = {
"socials": "xx.png"
}
ignore_that_icon_isnt_square = [
"dist/searchEngines/www.x-recherche.com.png",
"dist/plugins/gears.png"
]
min_image_size = 48
placeholder_icon_hash = "398a623a3b0b10eba6d1884b0ff1713ee12aeafaa8efaf67b60a4624f4dce48c"
@ -115,7 +120,9 @@ def test_if_dist_icons_are_square():
im = Image.open(file)
if im.size[0] != im.size[1]:
print("{file} isn't square ({width}x{height})".format(file=file, width=im.size[0], height=im.size[1]))
# error = True # TODO: Enable if non square icons are fixed
if file not in ignore_that_icon_isnt_square:
error = True
if __name__ == "__main__":
error = False