Reverse tests order

This commit is contained in:
proller 2017-09-06 20:16:17 +03:00
parent 7e46044474
commit 16bd99493b

View File

@ -93,7 +93,7 @@ def main(args):
print("Won't run stateful tests because test data wasn't loaded. See README.txt.")
continue
for case in sorted(filter(lambda case: re.search(args.test, case) if args.test else True, os.listdir(suite_dir))):
for case in sorted(filter(lambda case: re.search(args.test, case) if args.test else True, os.listdir(suite_dir)), reverse=True):
if SERVER_DIED:
break