We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 264d1bd commit 621c87eCopy full SHA for 621c87e
taskcluster/fxci_config_taskgraph/transforms/integration_test.py
@@ -6,11 +6,11 @@
6
import os
7
import shlex
8
from typing import Any
9
-import yaml
10
11
import jsone
12
import requests
13
import slugid
+import yaml
14
from taskgraph.transforms.base import TransformSequence
15
16
from fxci_config_taskgraph.util.integration import (
@@ -229,7 +229,9 @@ def schedule_tasks_at_index(config, tasks):
229
fetches = json.loads(
230
task_def["payload"].get("env", {}).get("MOZ_FETCHES", {})
231
)
232
- if any(not fetch["artifact"].startswith("public") for fetch in fetches):
+ if any(
233
+ not fetch["artifact"].startswith("public") for fetch in fetches
234
+ ):
235
continue
236
237
yield make_integration_test_description(task_def)
0 commit comments