Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/mozilla_taskgraph/worker_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,10 @@ def process_l10n_bump_info(info):
{
Required("early-to-late-beta"): {
Required("to-branch"): str,
# technically not used, but passing it keeps landoscript
# code cleaner, so we may as well require a real value
# for it.
Required("fetch-version-from"): str,
Optional("replacements"): [[str]],
},
},
Expand Down
2 changes: 2 additions & 0 deletions test/test_worker_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,7 @@ def test_lando_merge_early_to_late_beta(build_payload):
]
],
"to-branch": "to-b",
"fetch-version-from": "foo/bar.txt",
}
}
],
Expand All @@ -925,6 +926,7 @@ def test_lando_merge_early_to_late_beta(build_payload):
]
],
"to_branch": "to-b",
"fetch_version_from": "foo/bar.txt",
},
},
"scopes": [
Expand Down