We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e07558c commit e088ff0Copy full SHA for e088ff0
side_track/verify.py
@@ -54,6 +54,7 @@ def verify(exercise: GitAutograderExercise) -> GitAutograderOutput:
54
bug_fix_branch = exercise.repo.branches.branch("bug-fix")
55
bug_fix_branch.checkout()
56
if len(bug_fix_branch.user_commits) < 2:
57
+ print(bug_fix_branch.user_commits)
58
raise exercise.wrong_answer([MISSING_COMMITS])
59
60
# Ensure that they applied the right fix by testing the greet function
0 commit comments