Skip to content

Commit 3bbe502

Browse files
authored
Update collector docs with info about passing format without runsettings file (#1444)
1 parent a014bf0 commit 3bbe502

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

Documentation/VSTestIntegration.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,20 @@ We're working to fill the gaps.
7777

7878
### Default option (if you don't specify a runsettings file)
7979

80-
| Option | Summary |
81-
|:-------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
82-
|Format | Results format in which coverage output is generated. Default format is cobertura. Supported format lcov, opencover, cobertura, teamcity, json (default coverlet proprietary format) |
80+
Without specifying a runsettings file and calling coverlet by just the name of the collector, the result of the generated coverage output is by default in cobertura format.
81+
```
82+
dotnet test --collect:"XPlat Code Coverage"
83+
```
84+
85+
The output format of the coverage report can also be changed without a runsettings file by specifying it in a parameter. The supported formats are lcov, opencover, cobertura, teamcity, json (default coverlet proprietary format).
86+
```
87+
dotnet test --collect:"XPlat Code Coverage;Format=json"
88+
```
89+
90+
It is even possible to specify the coverage output in multiple formats.
91+
```
92+
dotnet test --collect:"XPlat Code Coverage;Format=json,lcov,cobertura"
93+
```
8394

8495
### Advanced Options (Supported via runsettings)
8596

0 commit comments

Comments
 (0)