variant
Configure reports for classes of specified named Kover report variant.
example:
kover {
     reports {
         variant("debug") {
             filters {
                 // override report filters for reports of 'debug' variant
             }
             html {
                 // configure HTML report for 'debug' variant
             }
             xml {
                 // configure XML report for 'debug' variant
             }
             verify {
                 // configure coverage verification for 'debug' variant
             }
             additionalBinaryReports.add(file("path/to/the/file.ic"))
         }
     }
}Content copied to clipboard