Skip to content

Commit

Permalink
Fix rubric title and increase timeout for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
zentox committed Feb 4, 2024
1 parent 3596dec commit 877e97b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jagr {
config.set(
Config(
executor = Executor(
timeoutIndividual = 20000,
timeoutTotal = 300000,
jvmArgs = listOf(
"-Djava.awt.headless=true",
"-Dtestfx.robot=glass",
Expand Down
9 changes: 1 addition & 8 deletions src/graderPublic/java/h13/rubric/RubricProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,14 @@
*/
public abstract class RubricProvider implements org.sourcegrade.jagr.api.rubric.RubricProvider {

/**
* The rubric for this assignment.
*/
public static final Rubric RUBRIC = Rubrics.read(
"H10 | Verzeigerte Strukturen - Public Tests",
"rubric.json"
);
/**
* The file containing the rubric for this assignment.
*/
private static final String RUBRIC_FILE = "rubric.json";
/**
* The prefix for the title of this rubric.
*/
private static final String RUBRIC_TITLE_PREFIX = "H10 | Verzeigerte Strukturen";
private static final String RUBRIC_TITLE_PREFIX = "H13 | Codecraft";
/**
* The rubric for this assignment.
*/
Expand Down

0 comments on commit 877e97b

Please sign in to comment.