From 9f01bf1af30c7b7b26994a3353d2c2cce8d71bad Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Fri, 14 Mar 2025 12:20:48 +0100 Subject: [PATCH] use old expected failures file --- .woodpecker.star | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.woodpecker.star b/.woodpecker.star index acc9206b53..67e12f2927 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -945,7 +945,8 @@ def localApiTestPipeline(ctx): def localApiTests(ctx, name, suites, storage = "decomposed", extra_environment = {}, with_remote_php = False): test_dir = "%s/tests/acceptance" % dirs["base"] - expected_failures_file = "%s/expected-failures-localAPI-on-%s-storage.md" % (test_dir, storage) + # expected_failures_file = "%s/expected-failures-localAPI-on-%s-storage.md" % (test_dir, storage) + expected_failures_file = "%s/expected-failures-localAPI-on-decomposed-storage.md" % (test_dir) environment = { "TEST_SERVER_URL": OC_URL, @@ -1125,7 +1126,8 @@ def wopiValidatorTests(ctx, storage, wopiServerType, accounts_hash_difficulty = def coreApiTests(ctx, part_number = 1, number_of_parts = 1, with_remote_php = False, storage = "posix", accounts_hash_difficulty = 4): filterTags = "~@skipOnGraph&&~@skipOnOcis-%s-Storage" % ("OC" if storage == "owncloud" else "OCIS") test_dir = "%s/tests/acceptance" % dirs["base"] - expected_failures_file = "%s/expected-failures-API-on-%s-storage.md" % (test_dir, storage.upper()) + # expected_failures_file = "%s/expected-failures-API-on-%s-storage.md" % (test_dir, storage.upper()) + expected_failures_file = "%s/expected-failures-API-on-decomposed-storage.md" % (test_dir) return { "name": "Core-API-Tests-%s%s" % (part_number, "-withoutRemotePhp" if not with_remote_php else ""),