forked from BraeWebb/chalkbox
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample-config.yaml
More file actions
51 lines (43 loc) · 1.19 KB
/
example-config.yaml
File metadata and controls
51 lines (43 loc) · 1.19 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Enable debug logging
debug: true
# name for the output
name: CSSE2002 - Assignment 2
submission:
path: /autograder/submission/
# Extra items for the classpath, if they are relative then they will be relative to the submission path
classPath:
- lib/checkstyle-10.14.1-all.jar
- lib/hamcrest-core-1.3.jar
- lib/junit-4.13.jar
- lib/processing.jar
- lib/engine.jar
- lib/provided.jar
solution:
path: solutions/correct/
# Extra items for the classpath, if they are relative then they will be relative to the solution path
classPath:
- lib/checkstyle-10.14.1-all.jar
- lib/hamcrest-core-1.3.jar
- lib/junit-4.13.jar
- lib/processing.jar
- lib/engine.jar
- lib/provided.jar
output:
/autograder/results/results.json
codestyle:
# How much out of 100 is the codestyle worth
weighting: 10
# How much out of the weighting to reduce per infraction
penalty: 1
# Which files to exclude from the checkstyle
excluded:
- ./src/tms/display/
conformance:
# Path globs to be ignored
ignored:
functionality:
# How much out of 100 is the functionality worth
weighting: 65
mutation:
# How much out of 100 is the mutation worth
weighting: 25