Revert "Reverse tests order"

- need smarter reverse

This reverts commit 16bd99493b.
This commit is contained in:
proller 2017-09-06 21:39:04 +03:00
parent 16bd99493b
commit 888214e33d

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)), reverse=True):
for case in sorted(filter(lambda case: re.search(args.test, case) if args.test else True, os.listdir(suite_dir))):
if SERVER_DIED:
break