-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpawtograder.yml
More file actions
36 lines (35 loc) · 1.07 KB
/
Copy pathpawtograder.yml
File metadata and controls
36 lines (35 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# yaml-language-server: $schema=./pawtograder.schema.yml
build:
preset: 'java-gradle'
cmd: './gradlew test'
artifacts: ['build/reports/jacoco']
linter:
preset: 'checkstyle'
policy: 'fail'
gradedParts:
- name: Task 1 - The Great Connect Four Catastrophe
gradedUnits:
- name: Test doMath
locations:
- com.pawtograder.example.java.Entrypoint:8-15
breakPoints:
- minimumMutantsDetected: 3
pointsToAward: 5
- minimumMutantsDetected: 2
pointsToAward: 3
- name: Implement Entrypoint.getMessage()
tests:
- com.pawtograder.example.java.EntrypointTest.
points: 10
testCount: 9
- name: Task 2 - Putting The Pieces Back Together
gradedUnits:
- name: More Entrypoint Stuff
points: 10
testCount: 6
tests: com.pawtograder.example.java.EntrypointTestPart2
submissionFiles:
files:
- 'src/main/java/com/pawtograder/example/java/Entrypoint.java'
testFiles:
- 'src/test/java/com/pawtograder/example/java/EntrypointTest.java'