Skip to content

Commit 2d0d61e

Browse files
committed
Debug flaky test
1 parent 400dc9f commit 2d0d61e

1 file changed

Lines changed: 6 additions & 11 deletions

File tree

.woodpecker.star

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ config = {
337337
},
338338
},
339339
"coreApiTests": {
340-
"numberOfParts": 7,
340+
"numberOfParts": 1,
341341
"skip": False,
342342
"skipExceptParts": [],
343343
"storages": ["posix"],
@@ -510,16 +510,10 @@ def main(ctx):
510510
)
511511

512512
test_pipelines = \
513-
codestyle(ctx) + \
514-
checkGherkinLint(ctx) + \
515-
checkTestSuitesInExpectedFailures(ctx) + \
516513
pipelinesDependsOn(buildWebCache(ctx), savePipelineNumber(ctx)) + \
517514
pipelinesDependsOn(cacheBrowsers(ctx), savePipelineNumber(ctx)) + \
518515
getGoBinForTesting(ctx) + \
519516
pipelinesDependsOn(buildOpencloudBinaryForTesting(ctx), savePipelineNumber(ctx)) + \
520-
checkStarlark(ctx) + \
521-
build_release_helpers + \
522-
testOpencloudAndUploadResults(ctx) + \
523517
testPipelines(ctx)
524518

525519
build_release_pipelines = \
@@ -572,7 +566,7 @@ def main(ctx):
572566
pipelines = test_pipelines + build_release_pipelines + genDocsPr(ctx) + notifyMatrix(ctx)
573567

574568
pipelineSanityChecks(pipelines)
575-
return savePipelineNumber(ctx) + pipelines
569+
return savePipelineNumber(ctx) + test_pipelines
576570

577571
def savePipelineNumber(ctx):
578572
base_url = "https://raw.githubusercontent.com/%s" % repo_slug
@@ -664,10 +658,10 @@ def testPipelines(ctx):
664658
pipelines += wopiValidatorTests(ctx, storage, "builtin")
665659
pipelines += wopiValidatorTests(ctx, storage, "cs3")
666660

667-
pipelines += localApiTestPipeline(ctx)
661+
#pipelines += localApiTestPipeline(ctx)
668662
pipelines += coreApiTestPipeline(ctx)
669-
pipelines += e2eTestPipeline(ctx)
670-
pipelines += multiServiceE2ePipeline(ctx)
663+
#pipelines += e2eTestPipeline(ctx)
664+
#pipelines += multiServiceE2ePipeline(ctx)
671665

672666
if ("skip" not in config["k6LoadTests"] or not config["k6LoadTests"]["skip"]) and ("k6-test" in ctx.build.title.lower() or ctx.build.event == "cron"):
673667
pipelines += pipelineDependsOn(k6LoadTests(ctx), savePipelineNumber(ctx))
@@ -1439,6 +1433,7 @@ def coreApiTest(part_number = 1, number_of_parts = 1, with_remote_php = False, s
14391433
"SEND_SCENARIO_LINE_REFERENCES": True,
14401434
"STORAGE_DRIVER": storage,
14411435
"BEHAT_FILTER_TAGS": filter_tags,
1436+
"BEHAT_FEATULRE": "tests/acceptance/features/coreApiShareManagementToShares/moveShareInsideAnotherShare.feature",
14421437
"DIVIDE_INTO_NUM_PARTS": number_of_parts,
14431438
"RUN_PART": part_number,
14441439
"ACCEPTANCE_TEST_TYPE": "core-api",

0 commit comments

Comments
 (0)