當前位置: 首頁>>代碼示例>>Python>>正文


Python Depends.profiles方法代碼示例

本文整理匯總了Python中bindep.depends.Depends.profiles方法的典型用法代碼示例。如果您正苦於以下問題:Python Depends.profiles方法的具體用法?Python Depends.profiles怎麽用?Python Depends.profiles使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在bindep.depends.Depends的用法示例。


在下文中一共展示了Depends.profiles方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_finds_profiles

# 需要導入模塊: from bindep.depends import Depends [as 別名]
# 或者: from bindep.depends.Depends import profiles [as 別名]
 def test_finds_profiles(self):
     depends = Depends(dedent("""\
         foo
         bar [something]
         quux [anotherthing !nothing] <=12
         """))
     self.assertThat(
         depends.profiles(),
         MatchesSetwise(*map(
             Equals, ["something", "anotherthing", "nothing"])))
開發者ID:openstack-infra,項目名稱:bindep,代碼行數:12,代碼來源:test_depends.py

示例2: main

# 需要導入模塊: from bindep.depends import Depends [as 別名]
# 或者: from bindep.depends.Depends import profiles [as 別名]
def main(depends=None):
    if depends is None:
        try:
            content = open("other-requirements.txt", "rt").read()
        except IOError:
            logging.error("No other-requirements.txt file found.")
            return 1
        depends = Depends(content)
    parser = optparse.OptionParser()
    parser.add_option("--profiles", action="store_true", help="List the platform and configuration profiles.")
    opts, args = parser.parse_args()
    if opts.profiles:
        logging.info("Platform profiles:")
        for profile in depends.platform_profiles():
            logging.info("%s", profile)
        logging.info("")
        logging.info("Configuration profiles:")
        for profile in depends.profiles():
            logging.info("%s", profile)
    else:
        if args:
            profiles = args
        else:
            profiles = ["default"]
        profiles = profiles + depends.platform_profiles()
        rules = depends.active_rules(profiles)
        errors = depends.check_rules(rules)
        for error in errors:
            if error[0] == "missing":
                logging.info("Missing packages:")
                logging.info("    %s", " ".join(error[1]))
            if error[0] == "badversion":
                logging.info("Bad versions of installed packages:")
                for pkg, constraint, version in error[1]:
                    logging.info("    %s version %s does not match %s", pkg, version, constraint)
        if errors:
            return 1
    return 0
開發者ID:pombredanne,項目名稱:bindep,代碼行數:40,代碼來源:main.py

示例3: test_3tuple

# 需要導入模塊: from bindep.depends import Depends [as 別名]
# 或者: from bindep.depends.Depends import profiles [as 別名]
 def test_3tuple(self):
     depends = Depends(u"erlang [(infra rabbitmq hipe)]\n")
     self.assertEqual(sorted([u'infra', u'rabbitmq', u'hipe']),
                      depends.profiles())
開發者ID:openstack-infra,項目名稱:bindep,代碼行數:6,代碼來源:test_depends.py

示例4: test_empty_file

# 需要導入模塊: from bindep.depends import Depends [as 別名]
# 或者: from bindep.depends.Depends import profiles [as 別名]
 def test_empty_file(self):
     depends = Depends("")
     self.assertEqual([], depends.profiles())
開發者ID:openstack-infra,項目名稱:bindep,代碼行數:5,代碼來源:test_depends.py


注:本文中的bindep.depends.Depends.profiles方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。