diff --git a/test/run-unit-tests.py b/test/run-unit-tests.py index e6f26c2821..1b0329644b 100755 --- a/test/run-unit-tests.py +++ b/test/run-unit-tests.py @@ -42,7 +42,7 @@ if not opts.artifact_directory and os.getenv('ARTIFACT_DIRECTORY'): opts.artifact_directory = os.getenv('ARTIFACT_DIRECTORY') total.total = len(tests) -for test in tests: +for test in sorted(tests): name = os.path.basename(test) ex = subprocess.run(test, stdin=subprocess.DEVNULL, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)