Skip to content

Commit

Permalink
Merge branch 'master' into build-infra
Browse files Browse the repository at this point in the history
  • Loading branch information
codito committed Nov 15, 2018
2 parents dde6e92 + 24d031d commit fcd536b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -21,12 +21,12 @@ Xunit logger can generate xml reports in the xunit v2 format (https://xunit.gith

A path for the report file can be specified as follows:
```
> dotnet test --test-adapter-path:. --logger:xunit;LogFilePath=test_result.xml
> dotnet test --test-adapter-path:. --logger:"xunit;LogFilePath=test_result.xml"
```

`test_result.xml` will be generated in the same directory as `test.csproj`.

**Note:** the arguments to `--logger` should be in quotes since `;` is treated as a command delimiter in shell.

## License
MIT
MIT
2 changes: 1 addition & 1 deletion src/Xunit.Xml.TestLogger/XunitXmlTestLogger.cs
Expand Up @@ -533,7 +533,7 @@ private static string OutcomeToString(TestOutcome outcome)
return "Pass";

case TestOutcome.Skipped:
return "Skipped";
return "Skip";

default:
return "Unknown";
Expand Down

0 comments on commit fcd536b

Please sign in to comment.