-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
executable file
·34 lines (30 loc) · 1001 Bytes
/
config.yml
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
gp:
generations: 10
populationSize: 20
mutationRate: 1
mutationOperators:
- LRR
iterationsPerBug: 5
numberOfThreads: 2
defects4j:
testCaseSelection:
method: identifier
selection:
Compress: [27, 31]
Cli: [19, 32]
Closure: [6, 11, 13, 46, 78, 102, 115, 117, 126]
Jsoup: [24, 40, 49, 64]
Lang: [10, 53]
Math: [50]
JacksonDatabind: [83, 102]
output:
csv: summary
javadoc: false
uploadToPatchViewer: false
uploadToGeneratePatches: false
gp: true
# Docker run command to copy over the users config.yml if present and map output and javadoc directories
# docker build -t dev .
# docker run -v ${pwd}/config.yml:/APRFramework/config.yml -v ${pwd}/output/:/output/ -v ${pwd}/javadoc/:/javadoc/ dev -> command to users
# docker run -v ${pwd}/:/APRFramework dev -> debugging
# docker run -v %cd%/config.yml:/APRFramework/config.yml -v %cd%/output/:/output/ -v %cd%/javadoc/:/javadoc/ dev