#!/bin/python3

from grading import graders

problem_id = '1'
test_cases = [('Potencia', 'q00', 5), ('Separar cadena', 'q01', 4), ('Format', 'q02', 4), ('Extraer dominio', 'q03', 4), ('Encontrar Perro', 'q04', 6), ('Contar perro', 'q05', 6), ('Expresión lambda', 'q06', 4), ('Problema final', 'q07', 7)]
options = {'treat_non_zero_as_runtime_error': True, 'filename': 'notebook', 'time_limit': 5, 'hard_time_limit': 15, 'custom_feedback': {}, 'dataset': {'url': '', 'filename': ''}, 'show_debug_info_for': [0, 3, 7], 'memory_limit': 100}
weights = [1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 2.0]

graders.handle_problem_action(problem_id, test_cases, options=options, weights=weights)
