Unverified Commit e93e49a7 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

restore printing alphabetically sorted lists of missing styles

parent e7774548
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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