diff options
| author | 2021-02-28 14:26:39 +0300 | |
|---|---|---|
| committer | 2021-02-28 14:26:39 +0300 | |
| commit | cf13799c32d4c9ef9098215fc103f4a144077581 (patch) | |
| tree | 8538fe46d101fb2f953df7fb19da93c10643dc88 /SCHEMA.md | |
| parent | Merge pull request #64 from python-discord/abouelela-codeowners (diff) | |
| parent | Merge branch 'main' into feat/9/unittest-validation (diff) | |
Merge pull request #63 from python-discord/feat/9/unittest-validation
Support code unit testing through snekbox
Diffstat (limited to 'SCHEMA.md')
| -rw-r--r-- | SCHEMA.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -123,7 +123,12 @@ Textareas require no additional configuration. ```js { // A supported language from https://prismjs.com/#supported-languages - "language": "python" + "language": "python", + // An optinal mapping of unit tests + "unittests": { + "unit_1": "unit_code()", + ... + } } ``` |