当前位置: 首页>>代码示例>>Python>>正文


Python s3.clean_loc_files函数代码示例

本文整理汇总了Python中tests.unit.customizations.s3.clean_loc_files函数的典型用法代码示例。如果您正苦于以下问题:Python clean_loc_files函数的具体用法?Python clean_loc_files怎么用?Python clean_loc_files使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了clean_loc_files函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: tearDown

    def tearDown(self):
        self.output.close()
        sys.stdout = self.saved_stdout

        super(CommandArchitectureTest, self).setUp()
        clean_loc_files(self.loc_files)
        s3_cleanup(self.bucket, self.session)
开发者ID:Gimpson,项目名称:aws-cli,代码行数:7,代码来源:test_s3.py

示例2: tearDown

    def tearDown(self):
        self.output.close()
        self.err_output.close()
        sys.stdout = self.saved_stdout
        sys.stderr = self.saved_stderr

        super(CommandArchitectureTest, self).tearDown()
        clean_loc_files(self.file_creator)
开发者ID:MAS150MD200,项目名称:aws-cli,代码行数:8,代码来源:test_subcommands.py

示例3: tearDown

 def tearDown(self):
     clean_loc_files(self.loc_files)
     s3_cleanup(self.bucket, self.session)
开发者ID:emyphan,项目名称:aws-cli,代码行数:3,代码来源:test_s3handler.py

示例4: tearDown

 def tearDown(self):
     super(S3HandlerTestDownload, self).tearDown()
     clean_loc_files(self.loc_files)
     s3_cleanup(self.bucket, self.session)
开发者ID:50onRed,项目名称:aws-cli,代码行数:4,代码来源:test_s3handler.py

示例5: tearDown

 def tearDown(self):
     clean_loc_files(self.file_creator)
     s3_cleanup(self.bucket, self.session)
开发者ID:Frame02,项目名称:aws-cli,代码行数:3,代码来源:test_s3handler.py

示例6: tearDown

 def tearDown(self):
     clean_loc_files(self.files)
开发者ID:CitizenB,项目名称:aws-cli,代码行数:2,代码来源:test_filegenerator.py

示例7: tearDown

 def tearDown(self):
     clean_loc_files(self.file_creator)
开发者ID:mtdowling,项目名称:aws-cli,代码行数:2,代码来源:test_filegenerator.py


注:本文中的tests.unit.customizations.s3.clean_loc_files函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。