Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.37 KB

File metadata and controls

42 lines (29 loc) · 1.37 KB

<< back

Moodle

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.

tt_moodle_id param

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.

tt_moodle_max_score param

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.

Example

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]