Add codepipeline.delete_pipeline

This commit is contained in:
gruebel 2019-12-15 17:58:38 +01:00
commit 8e03b1d525
4 changed files with 683 additions and 13 deletions

View file

@ -142,6 +142,9 @@ class CodePipelineBackend(BaseBackend):
return sorted(pipelines, key=lambda i: i["name"])
def delete_pipeline(self, name):
self.pipelines.pop(name, None)
codepipeline_backends = {}
for region in Session().get_available_regions("codepipeline"):