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 5751b3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 @@ -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 5751b3d

Please sign in to comment.