Adds AzurePipelines.TestLogger (#170)

Adding a new test logger I've written for the Azure DevOps REST API/Azure Pipelines
This commit is contained in:
Dave Glick 2019-09-19 09:58:14 -04:00 коммит произвёл Sarabjot Singh
Родитель f94c1efa93
Коммит 4befa8c777
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -24,6 +24,7 @@ if you're interested in the architecture of a test logger.
| Local, CI, CD | [XunitXml.TestLogger][xunit.nuget] | [Xunit Logger][] |
| Local, CI, CD | [NunitXml.TestLogger][nunit.nuget] | [Nunit Logger][] |
| AppVeyor | [AppVeyor.TestLogger][appveyor.nuget] | [AppVeyor Logger][] |
| Azure Pipelines | [AzurePipelines.TestLogger][azurepipelines.nuget] | [Azure Pipelines Logger][] |
| TeamCity | [TeamCity.VSTest.TestAdapter][teamcity.nuget] | [Teamcity Logger][] |
[Trx Logger]: https://github.com/Microsoft/vstest/tree/master/src/Microsoft.TestPlatform.Extensions.TrxLogger
@ -31,11 +32,13 @@ if you're interested in the architecture of a test logger.
[Xunit Logger]: https://github.com/spekt/xunit.testlogger
[Nunit Logger]: https://github.com/spekt/nunit.testlogger
[AppVeyor Logger]: https://github.com/spekt/appveyor.testlogger
[Azure Pipelines Logger]: https://github.com/daveaglick/AzurePipelines.TestLogger
[TeamCity Logger]: https://github.com/JetBrains/TeamCity.VSTest.TestAdapter
[xunit.nuget]: https://www.nuget.org/packages/XunitXml.TestLogger
[nunit.nuget]: https://www.nuget.org/packages/NUnitXml.TestLogger/
[appveyor.nuget]: https://www.nuget.org/packages/AppVeyor.TestLogger
[azurepipelines.nuget]: https://www.nuget.org/packages/AzurePipelines.TestLogger
[teamcity.nuget]: https://www.nuget.org/packages/TeamCity.VSTest.TestAdapter
Want to add your logger? Please send a PR with changes in this doc.