We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef703d2 commit b1aeac5Copy full SHA for b1aeac5
bin/concatenate_all.py
@@ -39,6 +39,7 @@ def main():
39
semester = lichen_config_data["semester"]
40
course = lichen_config_data["course"]
41
gradeable = lichen_config_data["gradeable"]
42
+ users_to_ignore = lichen_config_data["ignore_submissions"]
43
44
# this assumes regex is seperated by a ','
45
regex_expressions = lichen_config_data["regex"].split(',')
@@ -84,6 +85,8 @@ def main():
84
85
for user in sorted(os.listdir(submission_dir)):
86
if not os.path.isdir(os.path.join(submission_dir, user)):
87
continue
88
+ elif user in users_to_ignore:
89
+ continue
90
for version in sorted(os.listdir(os.path.join(submission_dir, user))):
91
if not os.path.isdir(os.path.join(submission_dir, user, version)):
92
0 commit comments