-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoverage.settings.xml
More file actions
38 lines (36 loc) · 1.77 KB
/
Copy pathcoverage.settings.xml
File metadata and controls
38 lines (36 loc) · 1.77 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
<?xml version="1.0" encoding="utf-8"?>
<Configuration>
<CodeCoverage>
<ModulePaths>
<Include>
<!-- instrument all managed modules by default -->
<ModulePath>(?i)(^|.*[\\/])adaskothebeast\.[^\\/]*\.(dll|exe)$</ModulePath>
</Include>
<Exclude>
<!-- exclude test assemblies -->
<ModulePath>(?i)(^|.*[\\/])[^\\/]*\.(test|tests|integrationtest|integrationtests)\.dll$</ModulePath>
</Exclude>
</ModulePaths>
<!-- keep empty unless you need regex-based function excludes -->
<Functions>
<Exclude>
<!-- examples:
<Function>^AdaskoTheBeAsT\.FunctionApp\.FunctionExecutorAutoStartup\..*</Function>
<Function>^AdaskoTheBeAsT\.FunctionApp\.FunctionExecutorHostBuilderExtensions\..*</Function>
<Function>^AdaskoTheBeAsT\.FunctionApp\.FunctionMetadataProviderAutoStartup\..*</Function>
<Function>^AdaskoTheBeAsT\.FunctionApp\.WorkerHostBuilderFunctionMetadataProviderExtension\..*</Function>
-->
</Exclude>
</Functions>
<Attributes>
<Exclude>
<Attribute>^System\.ObsoleteAttribute$</Attribute>
<Attribute>^System\.CodeDom\.Compiler\.GeneratedCodeAttribute$</Attribute>
<Attribute>^System\.Runtime\.CompilerServices\.CompilerGeneratedAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.CodeAnalysis\.ExcludeFromCodeCoverageAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.DebuggerHiddenAttribute$</Attribute>
<Attribute>^System\.Diagnostics\.DebuggerNonUserCodeAttribute$</Attribute>
</Exclude>
</Attributes>
</CodeCoverage>
</Configuration>