Skip to content

Commit

Permalink
Release Cuppa 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
phillcunnington committed Jun 1, 2021
1 parent 9a07ec0 commit eb1daec
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ allprojects {
apply plugin: 'jacoco'

group = 'org.forgerock.cuppa'
version = '1.5.0'
version = '1.6.0'

repositories {
mavenLocal()
Expand Down
18 changes: 18 additions & 0 deletions docs/_posts/2021-06-01-1.6.0-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: 1.6.0 Released
author: phillcunnington
---

**Cuppa 1.6.0 is now available.**

This release adds a new method to the `Runner`, `#getExitCode` that can be called after a test run
to determine the overall status of the test run.

The following list specifies the order in which the exit code is determined:
* If no tests are run the exit code will be `4`
* If any block, test hook or test fails the exit code will be `1`
* If any test is skipped the exit code will be `2`
* If any test is pending the exit code will be `3`
* If none of the above the exit code will be `0`

Check out [the release](https://github.com/cuppa-framework/cuppa/releases/tag/v1.6.0).

0 comments on commit eb1daec

Please sign in to comment.