def compile(manifest_file, test_path, url_base, property_order=None, boolean_properties=None): return conditional.compile(manifest_file, data_cls_getter=data_cls_getter, test_path=test_path, url_base=url_base, property_order=property_order, boolean_properties=boolean_properties)
def compile(manifest_file, test_path, url_base, run_info_properties, update_intermittent, remove_intermittent): return conditional.compile(manifest_file, data_cls_getter=data_cls_getter, test_path=test_path, url_base=url_base, run_info_properties=run_info_properties, update_intermittent=update_intermittent, remove_intermittent=remove_intermittent)
def compile(manifest_file, test_path, url_base): return conditional.compile(manifest_file, data_cls_getter=data_cls_getter, test_path=test_path, url_base=url_base)
def compile(manifest_file, test_path, url_base, run_info_properties): return conditional.compile(manifest_file, data_cls_getter=data_cls_getter, test_path=test_path, url_base=url_base, run_info_properties=run_info_properties)
def get_manifest(manifest_path): with open(manifest_path) as f: return conditional.compile( f, data_cls_getter=lambda x, y: IncludeManifest)
def get_manifest(manifest_path): with open(manifest_path) as f: return conditional.compile(f, data_cls_getter=lambda x, y: IncludeManifest)