-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathcoverage.runsettings
More file actions
22 lines (22 loc) · 1.19 KB
/
coverage.runsettings
File metadata and controls
22 lines (22 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
<?xml version="1.0" encoding="utf-8"?>
<!-- Coverage settings for the integration test suite. Scopes instrumentation to
FSH product code (modules + framework), excluding tests, migrations and generated code.
Run with: dotnet test (collect "XPlat Code Coverage", settings coverage.runsettings). -->
<RunSettings>
<DataCollectionRunSettings>
<DataCollectors>
<DataCollector friendlyName="XPlat code coverage">
<Configuration>
<Format>cobertura</Format>
<Include>[FSH.Modules.*]*,[FSH.Framework.*]*</Include>
<!-- Excluded from the meaningful-coverage denominator: hosted/background
services are long-running loops not driven by request flows or units. -->
<Exclude>[*.Tests]*,[*Tests]*,[FSH.Starter.Migrations.*]*,[*]*.Migrations.*,[*]*HostedService</Exclude>
<ExcludeByAttribute>GeneratedCodeAttribute,CompilerGeneratedAttribute,ExcludeFromCodeCoverageAttribute,DebuggerNonUserCodeAttribute</ExcludeByAttribute>
<SkipAutoProps>true</SkipAutoProps>
<UseSourceLink>false</UseSourceLink>
</Configuration>
</DataCollector>
</DataCollectors>
</DataCollectionRunSettings>
</RunSettings>