-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverlet.runsettings
More file actions
23 lines (23 loc) · 1 KB
/
coverlet.runsettings
File metadata and controls
23 lines (23 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat Code Coverage">
<Configuration>
<Format>cobertura</Format>
<!-- DI wiring bootstrapping code -->
<!-- SqsMessageQueue, ScanEventRepository, DatabaseInitializer are integration-test only
(ADR-001) -->
<Exclude>[ScanEventWorker]ScanEventWorker.Infrastructure.*,[ScanEventWorker]Program</Exclude>
<!-- STJ JsonSerializerContext source-gen partials (ApiJsonContext) -->
<ExcludeByAttribute>GeneratedCodeAttribute,ExcludeFromCodeCoverageAttribute</ExcludeByAttribute>
<!-- other generated files -->
<ExcludeByFile>**/obj/**/*.cs</ExcludeByFile>
<Threshold>80</Threshold>
<ThresholdType>line</ThresholdType>
<ThresholdStat>minimum</ThresholdStat>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>