We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1b8dab commit 6ae4f7fCopy full SHA for 6ae4f7f
bot/code_coverage_bot/hooks/base.py
@@ -54,6 +54,8 @@ def __init__(
54
# Load coverage tasks for all platforms
55
decision_task_id = taskcluster.get_decision_task(self.branch, self.revision)
56
57
+ assert decision_task_id is not None, "The decision task couldn't be found"
58
+
59
group = taskcluster.get_task_details(decision_task_id)["taskGroupId"]
60
61
test_tasks = [
bot/code_coverage_bot/taskcluster.py
@@ -17,7 +17,7 @@
17
18
19
def get_decision_task(branch, revision):
20
- route = f"gecko.v2.{branch}.revision.{revision}.firefox.decision"
+ route = f"gecko.v2.{branch}.revision.{revision}.taskgraph.decision"
21
index = taskcluster_config.get_service("index")
22
try:
23
return index.findTask(route)["taskId"]
0 commit comments