fix: remove unsupported suite?

Signed-off-by: Julian Koberg <julian.koberg@kiteworks.com>
This commit is contained in:
Julian Koberg
2026-01-23 16:10:22 +01:00
parent c73bd30689
commit 4853dec630
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
# The test runner source for UI tests
WEB_COMMITID=b1882bd8167d9cfea454369a810c1549ff9cfa0d
WEB_COMMITID=6c5fae0833660f0893d824b5d64d050b2f29b842
WEB_BRANCH=stable-12.3

View File

@@ -384,7 +384,7 @@ config = {
"part": {
"skip": False,
"totalParts": 4, # divide and run all suites in parts (divide pipelines)
"xsuites": ["search", "app-provider", "oidc", "ocm", "keycloak"], # suites to skip
"xsuites": ["search", "app-provider", "ocm", "keycloak"], # suites to skip
},
"search": {
"skip": False,
@@ -1537,6 +1537,7 @@ def e2eTestPipeline(ctx):
"HEADLESS": "true",
"RETRY": "1",
"REPORT_TRACING": "with-tracing" in ctx.build.title.lower(),
"SKIP_A11Y_TESTS": "true",
}
# configs to setup ocis with keycloak
@@ -1723,6 +1724,7 @@ def multiServiceE2ePipeline(ctx):
"BASE_URL_OCIS": OCIS_DOMAIN,
"HEADLESS": "true",
"RETRY": "1",
"SKIP_A11Y_TESTS": "true",
},
"commands": [
"cd %s/tests/e2e" % dirs["web"],