Skip to content

Releases: maiflai/gradle-scalatest

Support --no-color | --console=plain

06 May 08:48
Compare
Choose a tag to compare

Thanks to @docent666.

0.6-5-g9065d91

30 Dec 22:34
Compare
Choose a tag to compare

Tests now correctly detected:

  • when the project has spaces in the name
  • when the task includes them by tag

0.6-2-g0c70497

29 Dec 16:41
Compare
Choose a tag to compare
  • As 0.6, but also published to Maven Central

0.6

23 Dec 11:37
Compare
Choose a tag to compare
0.6
  • Compatible with the new plugins declaration in Gradle 2.1
  • Support including and excluding scalatest tags via Test.include and Test.exclude

0.5

22 Jun 22:09
Compare
Choose a tag to compare
0.5

Produce sane messages to stdout when running tests in parallel

The minimum supported version of ScalaTest is now 2.0

0.4

09 May 20:59
Compare
Choose a tag to compare
0.4

Mimic the behaviour of the default Gradle Test Task: display progress to the command line.

For example:

:test
Discovery starting.
Discovery completed in 204 milliseconds.
Run starting. Expected test count is: 3
YourSpec:

  • test1 (24 milliseconds)
  • test2 (1 millisecond)
  • test3 (0 milliseconds)
    Run completed in 431 milliseconds.
    Total number of tests run: 3
    Suites: completed 2, aborted 0
    Tests: succeeded 3, failed 0, canceled 0, ignored 0, pending 0
    All tests passed.

BUILD SUCCESSFUL