diff options
Diffstat (limited to 'test/end-to-end/with_serve_test_runner.py')
-rwxr-xr-x | test/end-to-end/with_serve_test_runner.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/end-to-end/with_serve_test_runner.py b/test/end-to-end/with_serve_test_runner.py index 5caf752c..b3fb1b07 100755 --- a/test/end-to-end/with_serve_test_runner.py +++ b/test/end-to-end/with_serve_test_runner.py @@ -163,7 +163,8 @@ GIT_NOBODY_ENV: Dict[str, str] = { } count = 0 -for repo in os.listdir("data"): +repo_data = sorted(os.listdir("data")) +for repo in repo_data: target = os.path.join(REPOS_DIR, repo) shutil.copytree( os.path.join(DATA_DIR, repo), |