restore printing alphabetically sorted lists of missing styles

This commit is contained in:
Axel Kohlmeyer
2020-08-06 15:30:52 -04:00
parent e777454888
commit e93e49a777

View File

@ -163,7 +163,7 @@ def check_tests(name,styles,yaml,search,skip=()):
total = len(styles)
num_tests = total - num_missing
print(f"\nTests available for {name} styles: {num_tests} of {total}")
print("No tests for: ", list(missing))
print("No tests for: ", sorted(missing))
return num_missing
counter = 0