Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rabbitmq/cth_styledout

Common Test hook to output a concise colored summary on stdout
https://github.com/rabbitmq/cth_styledout

common-test erlang

Last synced: 26 days ago
JSON representation

Common Test hook to output a concise colored summary on stdout

Awesome Lists containing this project

README

        

# cth_styledout

A Common Test hook that overrides the default output of Common Test on
stdout with a more concise and colored output.

## How to use

To use it with ct_run(1):

```
ct_run -ct_hooks cth_styledout
```

To use it with Erlang.mk, put the following in your `Makefile`:

```make
dep_cth_styledout = git https://github.com/rabbitmq/cth_styledout.git master
TEST_DEPS += cth_styledout

CT_OPTS += '-ct_hooks cth_styledout'
```