bootstrap-vz/bootstrapvz/base/__init__.py

18 lines
570 B
Python
Raw Normal View History

__all__ = ['Phase', 'Task', 'main']
from phase import Phase
2013-12-29 23:52:08 +01:00
from task import Task
2013-06-09 16:10:43 +02:00
from main import main
def validate_manifest(data, validator, error):
2014-03-23 16:04:03 +01:00
"""Validates the manifest using the base manifest
Args:
data (dict): The data of the manifest
validator (function): The function that validates the manifest given the data and a path
error (function): The function tha raises an error when the validation fails
"""
import os.path
schema_path = os.path.normpath(os.path.join(os.path.dirname(__file__), 'manifest-schema.json'))
validator(data, schema_path)