Import Xml Report with Kotlin syntax
Answered
I'm struggling to figure out the Kotlin syntax for setting up an Import XML Report Build Feature. Does any one have any guidance?
Please sign in to leave a comment.
What is your configurations for XML report processing. You can find it in Build Configuration Setting > Build Features.
Lot of time it can be due to incorrect "Monitoring Rules".
Report Type: NUnit
Monitoring Rules: ..\tests\*.Tests.xml
Found it.
features {feature {
type = "xml-report-plugin"
param("xmlReportParsing.reportDirs", """..\tests\*.Tests.xml""")
param("xmlReportParsing.reportType", "nunit")
}
}