本文整理汇总了Python中pykwalify.core.Core.source方法的典型用法代码示例。如果您正苦于以下问题:Python Core.source方法的具体用法?Python Core.source怎么用?Python Core.source使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pykwalify.core.Core
的用法示例。
在下文中一共展示了Core.source方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_component_data_valid
# 需要导入模块: from pykwalify.core import Core [as 别名]
# 或者: from pykwalify.core.Core import source [as 别名]
def test_component_data_valid():
""" Check that the content of data fits with masonry schema v2 """
validator = Core(source_data={}, schema_data=get_schema())
for component_file in iglob('*/component.yaml'):
print(component_file)
source_data = yaml.load(open(component_file))
validator.source = source_data
try:
validator.validate(raise_exception=True)
except:
assert False, "Error found in: {0}".format(component_file)
示例2: create_validator
# 需要导入模块: from pykwalify.core import Core [as 别名]
# 或者: from pykwalify.core.Core import source [as 别名]
def create_validator(source_data):
version = source_data.get('schema_version', '1.0.0')
schema = get_schema(version)
validator = Core(source_data={}, schema_data=schema)
validator.source = source_data
return validator