Skip to content

v1.1.0

Compare
Choose a tag to compare
@gmazzo gmazzo released this 26 Apr 07:04
· 202 commits to main since this release

Added include/exclude DSL (#14) dedicated testAggregation to control inclusion and exclusion of projects and classes:

Autoaggregated projects

testAggregation {
  modules {
    include(project(":app"))
    exclude(projects.lib)
  }
}

Filtering coverage classes

testAggregation {
    coverage {
        include("com/**/Login*")
    }
}