diff options
author | 2021-06-02 04:03:17 +0300 | |
---|---|---|
committer | 2021-06-02 04:05:13 +0300 | |
commit | cf2b8d3babf29552e5eeb1ab535506408e18a3e5 (patch) | |
tree | 7607dd65784559d5af2faa490e7c8e32e0c982c7 /SCHEMA.md | |
parent | Set Form Viewing URL (diff) |
Adds Code Question Model
Adds an explicit model for questions of type `code`, to allow more
complex parsing. Updates schema docs.
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to 'SCHEMA.md')
-rw-r--r-- | SCHEMA.md | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -128,8 +128,13 @@ Textareas require no additional configuration. "language": "python", // An optinal mapping of unit tests "unittests": { - "unit_1": "unit_code()", - ... + // Record a submission, even if the tests don't pass + // Default: false + "allow_failure": false, + "tests": { + "unit_1": "unit_code()", + ... + } } } ``` |