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 Common Test Report Format (CTRF) test results and submit them to the buildnote service. CTRF is a test report specification designed to standardize the structure of test results reports across all tools and frameworks.
To enable collection of CTRF test results add the following section to buildnote.json
config file
{
"collect": {
...
"ctrf": {
"enabled": true,
"include": [
"**/*ctrf.json"
]
}
...
}
}
You can attach metadata to CTRF test results by configuring the metadata
section:
{
"collect": {
...
"ctrf": {
"enabled": true,
"include": [
"**/*ctrf.json"
],
"metadata": {
"test-user": "{{ env.USER }}",
"build-environment": "{{ env.BUILD_ENV }}"
}
}
...
}
}
To exclude any paths from collection configure exclude
section with required globs.
{
"collect": {
...
"ctrf": {
"exclude": [
"**/*excluded.json",
"/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