Skip to content

Commit

Permalink
Skip tests, to revert
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwengerter committed Apr 13, 2022
1 parent 523cefa commit 2d8b1bc
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 @@ -717,7 +717,7 @@ def checkTestSuites():
if (type(items) == "list"):
suites += items
elif (type(items) == "string"):
suites += [key]
suites.append(key)
else:
print("Error: invalid value for suite, it must be a list or string")
return False
Expand Down Expand Up @@ -795,10 +795,10 @@ def beforePipelines(ctx):
pipelinesDependsOn(yarnlint(ctx), yarnCache(ctx))

def stagePipelines(ctx):
unit_test_pipelines = unitTests(ctx)
e2e_pipelines = e2eTests(ctx)
# unit_test_pipelines = unitTests(ctx)
# e2e_pipelines = e2eTests(ctx)
acceptance_pipelines = acceptance(ctx)
return unit_test_pipelines + pipelinesDependsOn(e2e_pipelines, unit_test_pipelines) + pipelinesDependsOn(acceptance_pipelines, e2e_pipelines)
return acceptance_pipelines

def afterPipelines(ctx):
return build(ctx) + notify()
Expand Down

0 comments on commit 2d8b1bc

Please sign in to comment.