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

show .missing and .todo in travis TODO list

This commit is contained in:
Lukas Winkler 2017-07-06 12:33:14 +02:00
parent 2814117e82
commit 2ea6afcf9e

View file

@ -147,6 +147,16 @@ def test_if_build_script_is_deleting_all_unneeded_files():
error = True
def test_if_icons_are_indicated_to_be_missing():
for file in glob("src/**/*.missing"):
print("{icon} is missing".format(icon=file[:-8]))
def test_if_icons_are_indicated_to_be_improvable():
for file in glob("src/**/*.todo"):
print("{icon} could be improved".format(icon=file[:-5]))
if __name__ == "__main__":
error = False
@ -160,6 +170,8 @@ if __name__ == "__main__":
if "TRAVIS" in os.environ and os.environ["TRAVIS"]: # collapse on travis
print("travis_fold:start:small_icons")
print("improvable icons: (click to expand)")
test_if_icons_are_indicated_to_be_missing()
test_if_icons_are_indicated_to_be_improvable()
test_if_icons_are_large_enough()
print("travis_fold:end:small_icons")
test_if_build_script_is_deleting_all_unneeded_files()