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 0442b8e commit 5acb17eCopy full SHA for 5acb17e
.drone.star
@@ -445,7 +445,7 @@ def e2eTests(ctx):
445
"name": "install-browser",
446
"image": OC_CI_NODEJS,
447
"commands": [
448
- "pnpm exec playwright install",
+ "pnpm exec playwright install --with-deps",
449
],
450
"volumes": [
451
{
@@ -454,11 +454,13 @@ def e2eTests(ctx):
454
},
455
456
}]
457
+ depends_on = []
458
for idx, browser in enumerate(BROWSERS):
459
status = ["success"]
460
if idx > 0:
461
# allow other browsers step to run even if one fails
462
status.append("failure")
463
+ depends_on.append("e2e-%s" % BROWSERS[idx - 1])
464
465
e2e_test_steps.append({
466
"name": "e2e-%s" % browser,
0 commit comments