Skip to content

Commit

Permalink
Merge pull request #468 from softwareconstruction240/467-backend-phas…
Browse files Browse the repository at this point in the history
…e-6-tests-should-be-all-required

Update phase 6 passoff requirements
  • Loading branch information
19mdavenport authored Nov 12, 2024
2 parents 7fb354c + 4eb52a4 commit f3b893b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/edu/byu/cs/util/PhaseUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ public static boolean isPhaseGraded(Phase phase) {
*/
public static Collection<Rubric.RubricType> requiredRubricTypes(Phase phase) {
return switch (phase) {
case Phase0, Phase1, Phase3, Phase4 -> Set.of(Rubric.RubricType.PASSOFF_TESTS);
case Phase0, Phase1, Phase3, Phase4, Phase6 -> Set.of(Rubric.RubricType.PASSOFF_TESTS);
case GitHub -> Set.of(Rubric.RubricType.GITHUB_REPO);
case Phase5, Phase6, Quality, Commits -> Set.of();
case Phase5, Quality, Commits -> Set.of();
};
}

Expand Down

0 comments on commit f3b893b

Please sign in to comment.