added

mabl CLI Await Test Completion

It's now much simpler to integrate mabl tests with your CI pipelines. You no longer need a bash script to wait for mabl tests to complete.

Using the mabl CLI create deployment command, simply add the new --await-completion flag.

The following flags are available:

  • --await-completion block until mabl tests complete
  • --fast-failure block until the first test is unsuccessful
  • --silent avoid printing status polling updates
$ mabl deploy create\
  --application-id my-app-a\
  --auto-complete\
  --fast-failure

Note: the mabl CLI will return an exit code corresponding to test success/failure, so you can abort your deployment pipeline if mabl discovers issues with your release candidate.