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 TestNG XML test results and submit them to the buildnote service. TestNG is commonly used by Java frameworks and applications.
To enable collection of TestNG test results add the following section to buildnote.json
config file
{
"collect": {
...
"testng": {
"enabled": true,
"include": [
"**/*testng-results.xml"
]
}
...
}
}
You can attach metadata to TestNG test results by configuring the metadata
section:
{
"collect": {
...
"testng": {
"enabled": true,
"include": [
"**/*testng-results.xml"
],
"metadata": {
"test-user": "{{ env.USER }}",
"build-environment": "{{ env.BUILD_ENV }}"
}
}
...
}
}
To exclude any paths from collection configure exclude
section with required globs.
{
"collect": {
...
"testng": {
"exclude": [
"**/*excluded.xml",
"/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