Skip to content

Commit

Permalink
temporarily disable parallel deployment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Jan 12, 2022
1 parent c643b0e commit e4317e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ config = {
"suites": [
"apiShareManagement",
],
"skip": False,
"skip": True,
"earlyFail": True,
"cron": "nightly",
},
"apiWebdav": {
"suites": [
"apiWebdavOperations",
],
"skip": False,
"skip": True,
"earlyFail": True,
"cron": "nightly",
},
Expand Down Expand Up @@ -218,7 +218,7 @@ def cancelPreviousBuilds():
"name": "cancel-previous-builds",
"image": "owncloudci/drone-cancel-previous-builds",
"settings": {
"DRONE_TOKEN": {
"DRgONE_TOKEN": {
"from_secret": "drone_token",
},
},
Expand Down Expand Up @@ -251,7 +251,7 @@ def testPipelines(ctx):
if "skip" not in config["settingsUITests"] or not config["settingsUITests"]["skip"]:
pipelines.append(settingsUITests(ctx))

if "parallelApiTests" in config:
if "skip" not in config["parallelApiTests"] or not config["parallelApiTests"]["skip"]:
pipelines += parallelDeployAcceptancePipeline(ctx)

return pipelines
Expand Down

0 comments on commit e4317e7

Please sign in to comment.