icecat: add release icecat-140.7.0-1gnu1 for ecne

This commit is contained in:
Ark74 2026-01-18 00:07:02 -06:00
parent 7d0f5dab3b
commit 30225f2e73
156 changed files with 9131 additions and 4525 deletions

View file

@ -79,6 +79,11 @@ def test_query_paths_variants(monkeypatch, run_mach, capfd, variant):
"2025-08-01", "%Y-%m-%d"
)
monkeypatch.setattr(datetime, "datetime", datetime_mock)
# also patch the cache key since faking the date means we don't want to reuse another graph
monkeypatch.setattr(
"tryselect.tasks.cache_key",
lambda attr, *args: f"{attr}-test_query_paths_variants",
)
if variant:
variant = "-%s" % variant

View file

@ -67,31 +67,31 @@ TASK_CONFIG_TESTS = {
"worker-overrides": [
([], None),
(
["--worker-override", "b-linux=worker/pool"],
{"try_task_config": {"worker-overrides": {"b-linux": "worker/pool"}}},
["--worker-override", "b-linux-gcp=worker/pool"],
{"try_task_config": {"worker-overrides": {"b-linux-gcp": "worker/pool"}}},
),
(
[
"--worker-override",
"b-linux=worker/pool",
"b-linux-gcp=worker/pool",
"--worker-override",
"b-linux=other/pool",
"b-linux-gcp=other/pool",
],
SystemExit,
),
(
["--worker-suffix", "b-linux=-dev"],
["--worker-suffix", "b-linux-gcp=-dev"],
{
"try_task_config": {
"worker-overrides": {"b-linux": "gecko-1/b-linux-dev"}
"worker-overrides": {"b-linux-gcp": "gecko-1/b-linux-dev"}
}
},
),
(
[
"--worker-override",
"b-linux=worker/pool" "--worker-suffix",
"b-linux=-dev",
"b-linux-gcp=worker/pool" "--worker-suffix",
"b-linux-gcp=-dev",
],
SystemExit,
),