Skip to content

Releases: maiflai/gradle-scalatest

0.32

18 Dec 13:54
fca65de
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: https://github.com/maiflai/gradle-scalatest/compare/0.31..0.32

0.31

23 Apr 15:12
Compare
Choose a tag to compare
  • support for Gradle 7.0 - not backwards compatible.

0.29

04 Oct 21:47
Compare
Choose a tag to compare
  • support custom reporters

0.26

31 Dec 13:09
Compare
Choose a tag to compare
  • Fix #79 Spec is only run if the class ends in "Spec"

0.25

26 Mar 21:23
Compare
Choose a tag to compare
  • Support for Gradle 5.3

0.24

23 Feb 21:23
Compare
Choose a tag to compare

Support configuration of user-created Test tasks

task myTest(dependsOn: testClasses, type: Test, group: 'verification') {
    com.github.maiflai.ScalaTestPlugin.configure(it)
    tags {
        include 'com.example.tags.MyTag'
    }
}

0.23

29 Sep 17:43
Compare
Choose a tag to compare

0.21

04 Apr 19:07
Compare
Choose a tag to compare

Event Types

Quiet running can be enabled by suppressing all test events.

test {
  testLogging.events = []
}

0.19

15 Jan 21:21
6c512b7
Compare
Choose a tag to compare
  • Gradle 4.5 compatibility (thanks @sghill)

0.18

21 Oct 20:48
Compare
Choose a tag to compare
  • Address #28 by detecting common test suffixes
  • Upgrade the publish plugin (0.17 partially published to the plugin repository)