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


Python BehavioralUtils.count_repos_updated方法代码示例

本文整理汇总了Python中drupdates.tests.behavioral.behavioral_utils.BehavioralUtils.count_repos_updated方法的典型用法代码示例。如果您正苦于以下问题:Python BehavioralUtils.count_repos_updated方法的具体用法?Python BehavioralUtils.count_repos_updated怎么用?Python BehavioralUtils.count_repos_updated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在drupdates.tests.behavioral.behavioral_utils.BehavioralUtils的用法示例。


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

示例1: test_second_repo_built

# 需要导入模块: from drupdates.tests.behavioral.behavioral_utils import BehavioralUtils [as 别名]
# 或者: from drupdates.tests.behavioral.behavioral_utils.BehavioralUtils import count_repos_updated [as 别名]
    def test_second_repo_built(self):
        """ Test to ensure both repos built successfully. """

        count = BehavioralUtils.count_repos_updated('builds/test')
        # If 1 repo Siteupdates in report repo built successfully in builds/test.
        assert count == 1
开发者ID:jalama,项目名称:drupdates,代码行数:8,代码来源:test_multiple_working_directories_one_site.py

示例2: test_repo_built

# 需要导入模块: from drupdates.tests.behavioral.behavioral_utils import BehavioralUtils [as 别名]
# 或者: from drupdates.tests.behavioral.behavioral_utils.BehavioralUtils import count_repos_updated [as 别名]
    def test_repo_built():
        """ Test to ensure one repo built successfully. """

        count = BehavioralUtils.count_repos_updated('builds')
        # If 1 repo Siteupdates in report repo built successfully.
        assert count == 1
开发者ID:jalama,项目名称:drupdates,代码行数:8,代码来源:test_debug_report.py

示例3: test_all_repos_built

# 需要导入模块: from drupdates.tests.behavioral.behavioral_utils import BehavioralUtils [as 别名]
# 或者: from drupdates.tests.behavioral.behavioral_utils.BehavioralUtils import count_repos_updated [as 别名]
    def test_all_repos_built():
        """ Test to ensure all three repos built successfully. """

        count = BehavioralUtils.count_repos_updated('builds')
        # If 3 repos Siteupdates in report repo built successfully.
        assert count == 3
开发者ID:jalama,项目名称:drupdates,代码行数:8,代码来源:test_multiple_sites_one_noupdates.py


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