summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrederick Yin <fred.yin@sjtu.edu.cn>2021-10-10 14:01:34 +0800
committerFrederick Yin <fred.yin@sjtu.edu.cn>2021-10-10 14:01:34 +0800
commit7c21056e052fd71b1ce263175fa25c732de691cc (patch)
tree49c5e3a832108814127a4774862e408ade7f9743
parent5674af430b4901cb1b3116fa7482585f243d11da (diff)
Add rubrics to config
No use for now, will probably become otherwise
-rw-r--r--config.example.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.example.py b/config.example.py
index 9b12328..ae36c57 100644
--- a/config.example.py
+++ b/config.example.py
@@ -19,3 +19,17 @@ GITEA_TOKEN = ""
JOJ_COURSE_ID = "vg151_fall_2021_manuel"
JOJ_SESSION_ID = ""
JOJ_HOMEWORK_ID = "615542bfb3c06a0006f45dd6" # h2
+
+"""CANVAS"""
+RUBRIC = {
+ "indvFailSubmit": [-0.5, "individual submit missing"],
+ "indvUntidy": [-0.25, "individual branch untidy"],
+ "groupFailSubmit": [-2.5, "group submit missing"],
+ "groupUntidy": [-0.25, "group submit untidy"],
+ "jojFailHomework": [-0.5, "JOJ homework not passed"],
+ "jojFailExercise": [-0.25, "JOJ exercise not passed"],
+ "jojFailCompile": [-1, "JOJ fail to compile"],
+ "indvLowCodeQuality": [-0.25, "individual submit low code quality"],
+ "groupLowCodeQuality": [-0.25, "group submit low code quality"],
+ "noReview": [-1, "not review others' code"],
+}