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


Python Files.get_values方法代码示例

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


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

示例1: get_tests_from_xml

# 需要导入模块: from CIME.XML.files import Files [as 别名]
# 或者: from CIME.XML.files.Files import get_values [as 别名]
def get_tests_from_xml(xml_machine=None,xml_category=None,xml_compiler=None, xml_testlist=None,
                       machine=None, compiler=None):
    """
    Parse testlists for a list of tests
    """
    listoftests = []
    testlistfiles = []
    if(machine is not None):
        thismach=machine
    if(compiler is not None):
        thiscompiler = compiler

    if(xml_testlist is not None):
        expect(os.path.isfile(xml_testlist), "Testlist not found or not readable "+xml_testlist)
        testlistfiles.append(xml_testlist)
    else:
        files = Files()
        test_spec_files = files.get_values("TESTS_SPEC_FILE","component")
        for spec_file in test_spec_files.viewvalues():
            if(os.path.isfile(spec_file)):
                testlistfiles.append(spec_file)

    for testlistfile in testlistfiles:
        thistestlistfile = Testlist(testlistfile)
        newtests =  thistestlistfile.get_tests(xml_machine, xml_category, xml_compiler)
        for test in newtests:
            if(machine is None):
                thismach = test["machine"]
            if(compiler is None):
                thiscompiler = test["compiler"]
            test["name"] = CIME.utils.get_full_test_name(test["testname"], test["grid"], test["compset"], thismach, thiscompiler,
                                                         None if "testmods" not in test else test["testmods"])
            logging.info("Adding test "+test["name"])
        listoftests += newtests

    return listoftests
开发者ID:mt5555,项目名称:cime,代码行数:38,代码来源:test_utils.py


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