From e93e49a7773d144d0468025751853d5ea80e4fc6 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Thu, 6 Aug 2020 15:30:52 -0400 Subject: [PATCH] restore printing alphabetically sorted lists of missing styles --- unittest/force-styles/check_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unittest/force-styles/check_tests.py b/unittest/force-styles/check_tests.py index 9adc66044ec..e145b867d6b 100755 --- a/unittest/force-styles/check_tests.py +++ b/unittest/force-styles/check_tests.py @@ -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