We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 85eb7eb + 5077c89 commit 08a4a45Copy full SHA for 08a4a45
1 file changed
03_instructional_team/autograder/autograder.py
@@ -162,13 +162,14 @@
162
'assignment.sh' in script_rslt[i]['output'] for i in indx
163
]) and not (any(['dir4' in script_rslt[i]['output'] for i in indx])
164
or any(['dir5' in script_rslt[i]['output'] for i in indx])):
165
+ s.append({'question': 8, 'status': 1})
166
+ else:
167
s.append({
168
'question': 8,
169
'status': 0,
170
'comment': '`ls` command run on the wrong directory'
171
})
- else:
- s.append({'question': 8, 'status': 1})
172
+
173
else:
174
s.append({'question': 8, 'status': 0, 'comment': '`ls` command not run'})
175
0 commit comments