summaryrefslogtreecommitdiff
path: root/test/end-to-end/with_serve_test_runner.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/end-to-end/with_serve_test_runner.py')
-rwxr-xr-xtest/end-to-end/with_serve_test_runner.py3
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),