C. Quentin

Results 17 comments of C. Quentin

[Pygal](http://www.pygal.org/en/stable/) is pretty good to generate good looking svg chart in python. But I guess the best result would be in JS.

Since the *grader* only receive a dictionnary mapping each input field to the given answers, an exercise would have to only provide a list of tuples `(answers, expected_grade)`. ***Example:*** For...

Another idea, using namespace: ``` tests.test_name1.answers =% { "form_id1": "value1", "form_id2": "value2", "form_id3": "value3" } == tests.test_nam1.grade = [GRADE] tests.test_name2.answers =% { "form_id1": "value1", "form_id2": "value2", "form_id3": "value3" } ==...

Another way to see it : Dot not enforce any syntaxe, as long as the parsed result is the same (which is the case for the two syntaxe I gave...

I agree with most of the ideas, that's why I proposed a format for the tests (*json*). The plateform don't care about where the json come from (a template, a...

## To make a little summary. Tests must be present in the key `tests` and must be a dictionnary respecting this format: ```python3 { "[test name]": { "answers": { "[form...

>As there exists a None builder (the builder doing nothing). I can imagine a generic unknow exercice has the None checker (the checker checking nothing). This isn't really intended, builder...