Skip to content

Commit 14a9db1

Browse files
committed
use sorted outputs
1 parent 1c55e31 commit 14a9db1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/scripts/generate_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ def write_tasks_to_file():
11351135
with target.open("w") as fid:
11361136
fid.write("tasks:\n")
11371137

1138-
for name, func in getmembers(mod, isfunction):
1138+
for name, func in sorted(getmembers(mod, isfunction)):
11391139
if not name.endswith("_tasks"):
11401140
continue
11411141
if not name.startswith("create_"):

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ If you are running one of the `no-responder` tests, omit the `run-server` step.
367367
- If there are any special test considerations, including not running `pytest` at all, handle it in `.evergreen/scripts/run_tests.py`.
368368
- If there are any services or atlas clusters to teardown, handle them in `.evergreen/scripts/teardown_tests.py`.
369369
- Add functions to generate the test variant(s) and task(s) to the `.evergreen/scripts/generate_config.py`.
370-
- Regenerate the test variants and tasks using `pre-commit run generate-config`.
370+
- Regenerate the test variants and tasks using `pre-commit run --all-files generate-config`.
371371
- Make sure to add instructions for running the test suite to `CONTRIBUTING.md`.
372372

373373
## Re-sync Spec Tests

0 commit comments

Comments
 (0)