ci: fix adding new pipeline

This commit is contained in:
Saw-jan
2024-10-15 16:09:02 +05:45
parent 3e6ea4faed
commit 7cc481ef9b

View File

@@ -418,7 +418,7 @@ def testPipelines(ctx):
pipelines += e2eTestPipeline(ctx)
if ("skip" not in config["k6LoadTests"] or not config["k6LoadTests"]["skip"]) and ("k6-test" in ctx.build.title.lower() or ctx.build.event == "cron"):
pipelines.append(k6LoadTests(ctx))
pipelines += k6LoadTests(ctx)
return pipelines