Get started today!
Ready to gain unparalleled visibility into your pipelines and testing workflows? Get started with Buildnote now and transform the way your team delivers software.
Get startedBuildnote CLI can collect NUnit XML test results (v2.x and v3.x) and submit them to the buildnote service. NUnit is commonly used by .NET and Microsoft frameworks.
To enable collection of NUnit test results add the following section to buildnote.json
config file
{
"collect": {
...
"nunit": {
"enabled": true,
"include": [
"**/*nunit.xml"
]
}
...
}
}
You can attach metadata to NUnit test results by configuring the metadata
section:
{
"collect": {
...
"nunit": {
"enabled": true,
"include": [
"**/*nunit.xml"
],
"metadata": {
"test-user": "{{ env.USER }}",
"build-environment": "{{ env.BUILD_ENV }}"
}
}
...
}
}
To exclude any paths from collection configure exclude
section with required globs.
{
"collect": {
...
"nunit": {
"exclude": [
"/any/excluded/glob/**/"
]
}
...
}
}
Ready to gain unparalleled visibility into your pipelines and testing workflows? Get started with Buildnote now and transform the way your team delivers software.
Get started