-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstryker-config.json
More file actions
38 lines (38 loc) · 1.3 KB
/
stryker-config.json
File metadata and controls
38 lines (38 loc) · 1.3 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
{
"stryker-config": {
"solution": "Pulse.slnx",
"mutation-level": "Advanced",
"reporters": [
"html",
"json",
"dashboard",
"progress"
],
"project-info": {
"name": "github.com/dailydevops/pulse"
},
"thresholds": {
"high": 80,
"low": 60,
"break": 0
},
"test-projects": [
"tests/NetEvolve.Pulse.Tests.Unit/NetEvolve.Pulse.Tests.Unit.csproj",
"tests/NetEvolve.Pulse.Tests.Integration/NetEvolve.Pulse.Tests.Integration.csproj",
"tests/NetEvolve.Pulse.EntityFramework.Tests.Unit/NetEvolve.Pulse.EntityFramework.Tests.Unit.csproj",
"tests/NetEvolve.Pulse.EntityFramework.Tests.Integration/NetEvolve.Pulse.EntityFramework.Tests.Integration.csproj",
"tests/NetEvolve.Pulse.Polly.Tests.Unit/NetEvolve.Pulse.Polly.Tests.Unit.csproj",
"tests/NetEvolve.Pulse.Polly.Tests.Integration/NetEvolve.Pulse.Polly.Tests.Integration.csproj",
"tests/NetEvolve.Pulse.SqlServer.Tests.Unit/NetEvolve.Pulse.SqlServer.Tests.Unit.csproj",
"tests/NetEvolve.Pulse.SqlServer.Tests.Integration/NetEvolve.Pulse.SqlServer.Tests.Integration.csproj"
],
"coverage-analysis": "perTest",
"mutate": [
"**/*.cs",
"!**/*.Designer.cs",
"!**/*.g.cs",
"!**/*.g.i.cs"
],
"test-runner": "mtp"
}
}