Dotpretty is a gem designed to clean up the output of dotnet
. It works by piping the output of dotnet
into dotpretty
.
gem install dotpretty
Here is an example of the basic usage for dotpretty
.
dotnet test -v=normal Test.Project/ | dotpretty
Ordinarily, you will probably want to suppress stderr output.
dotnet test -v=normal Test.Project/ 2>&1 | dotpretty
Flag | Use | Default | Values |
---|---|---|---|
-c , --color |
Enables color output | false | |
-h , --help |
Display this help | ||
-r , --reporter |
Reporter to use to format output | basic | basic, json, progress |
- Ruby
- See
.ruby-version
file for specific version
- See
- Fork repository (if needed)
- Clone repository
bundle install
rake spec
runs unit tests followed by acceptance testsbundle exec guard
starts a watcher to re-run tests