def load_recipe_output()

in cpp/ext/recipeext.py [0:0]


def load_recipe_output(path):
    global test_names_to_output
    with ipc.open_stream(path) as reader:
        table = reader.read_all()
    recipe_names = table.column('Recipe Name').to_pylist()
    recipe_outputs = table.column('Recipe Output').to_pylist()
    for name, output in zip(recipe_names, recipe_outputs):
        test_names_to_output[name] = output