Releases: maiflai/gradle-scalatest
Releases · maiflai/gradle-scalatest
0.17
0.16
Breaking change in Gradle 4.0:
0.15
Resolves incompatibility between Jacoco and ScalaTest when using the plugins
dsl.
This does not occur when using the buildscript
method of applying the plugin.
java.lang.instrument.IllegalClassFormatException: Error while instrumenting class
plugins {
id 'jacoco'
id 'com.github.maiflai.scalatest' version '0.14'
}
0.14
0.13
0.12
0.11
0.10
0.9
Suites
Suites are supported with another extension to the Test
task.
task userStories(type: Test) {
suite 'com.example.UserStories'
// suites 'a.Spec', 'b.Spec', 'etc'
}
Reporting
New Test
tasks are now configured to have an HTML report directory based on their task name. This means that they should not overwrite the reports of sibling tasks.
It may mean that existing manual configuration can be removed.
Support --tests filtering
0.8 support gradle-style test filtering using the scalatest -z simplified…