Run full-ci if build event is tag while running web tests

This commit is contained in:
Parajuli Kiran
2021-06-07 12:13:12 +05:45
parent 58f8258560
commit 9277a8d6f7

View File

@@ -500,7 +500,7 @@ def uiTests(ctx):
filterTags = params["filterTags"]
if ("full-ci" in ctx.build.title.lower()):
if ("full-ci" in ctx.build.title.lower() or ctx.build.event == "tag"):
numberOfParts = params["numberOfParts"]
skipExceptParts = params["skipExceptParts"]
debugPartsEnabled = (len(skipExceptParts) != 0)