Sha256: bd890ba10dd1baf8058d39e52d29d604c4585d6c394d987b359eb53fbbb4aea2
Contents?: true
Size: 1.37 KB
Versions: 10
Compression:
Stored size: 1.37 KB
Contents
[<< back](README.md) # 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 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: vader@starwars.com - tt_members: Obiwan Kenobi tt_moodle_id: obiwan@starwars.com ``` Now, when after test execution, use "moodle.csv" output file to load students grades and feedback into your Moodle platform. ## tt_moodle_max_score 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: vader@starwars.com - tt_members: Obiwan Kenobi tt_moodle_id: obiwan@starwars.com ```
Version data entries
10 entries across 10 versions & 1 rubygems