We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf5ae0e commit 3ec634eCopy full SHA for 3ec634e
marking_and_admin/marker.py
@@ -5,13 +5,16 @@
5
It can clone new repos if you delete the students pickle
6
"""
7
import os
8
+import sys
9
10
from mark_functions import do_the_marking
11
12
MARKING_SPREADSHEET_ID = os.getenv("GOOGLE_SHEETS_KEY", "")
13
14
15
if __name__ == "__main__" and MARKING_SPREADSHEET_ID != "":
16
+ sys.path.insert(0, "/workspaces/me/set2")
17
+
18
do_the_marking(
19
this_year="2023",
20
rootdir="../StudentRepos",
0 commit comments