Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/rabbitmq/cth_styledout
- Owner: rabbitmq
- License: other
- Created: 2017-05-02T11:02:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-07-14T15:58:09.000Z (over 4 years ago)
- Last Synced: 2024-11-15T15:23:26.080Z (3 months ago)
- Topics: common-test, erlang
- Language: Erlang
- Size: 85 KB
- Stars: 1
- Watchers: 18
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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_styledoutCT_OPTS += '-ct_hooks cth_styledout'
```