ci: assign unit test cases in sequence of config and name

This commit is contained in:
He Yin Ling
2018-07-16 17:44:38 +08:00
parent 5b3d09d5c8
commit ef9eaddd88
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -282,7 +282,7 @@ class Parser(object):
config_output_folder = os.path.join(output_folder, config)
if os.path.exists(config_output_folder):
test_cases.extend(self.parse_test_cases_for_one_config(configs_folder, config_output_folder, config))
test_cases.sort(key=lambda x: x["config"] + x["summary"])
self.dump_test_cases(test_cases)