As a teacher, probably you are using Moodle platform. So, you want to upload the results of the evaluation carried out by Teuton into Moodle.
Teuton generates a file called moodle.csv with the grades of each student into CSV format. This file is suitable to import into Moodle platform.
Add a new field called tt_moodle_id to each case in "config.yaml". Fill it with the student's Moodle identification. For example, registered email on or ID number on Moodle platform.
Example:
global:
cases:
- tt_members: Darth Vader
tt_moodle_id: [email protected]
- tt_members: Obiwan Kenobi
tt_moodle_id: [email protected]
After test execution, use "moodle.csv" output file to load students grades and feedback into your Moodle platform.
By default, teuton evaluates grades from 0 to 100. So grade max score is 100.0 by default. Sometimes teachers configure their moodle tasks with diferents max score, so it is necesary adjust Teuton output grades with Moodle input grades.
We use tt_moodle_max_score to customize Moodle max score. So when Teuton export moodle.csv values, divides Teuton grades by this value.
global:
tt_moodle_max_score: 10
cases:
- tt_members: Darth Vader
tt_moodle_id: [email protected]
- tt_members: Obiwan Kenobi
tt_moodle_id: [email protected]