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 885725d commit 0442b8eCopy full SHA for 0442b8e
.drone.star
@@ -454,7 +454,12 @@ def e2eTests(ctx):
454
},
455
],
456
}]
457
- for browser in BROWSERS:
+ for idx, browser in enumerate(BROWSERS):
458
+ status = ["success"]
459
+ if idx > 0:
460
+ # allow other browsers step to run even if one fails
461
+ status.append("failure")
462
+
463
e2e_test_steps.append({
464
"name": "e2e-%s" % browser,
465
"image": OC_CI_NODEJS,
@@ -467,6 +472,9 @@ def e2eTests(ctx):
467
472
"path": "/root/.cache/ms-playwright",
468
473
469
474
475
+ "when": {
476
+ "status": status,
477
+ },
470
478
})
471
479
480
return [{
0 commit comments