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

https://github.com/axelson/ex_unit_file_formatter

Shows which files have errors and how many
https://github.com/axelson/ex_unit_file_formatter

Last synced: 4 months ago
JSON representation

Shows which files have errors and how many

Awesome Lists containing this project

README

          

# ExUnitFileFormatter

Outputs the list of files that have failed tests and sorts them by number of
failures.

Example usage:

mix test --formatter ExUnitFileFormatter

Example output (in an Umbrella application):

```
==> my_app

Failed Files:
1: /Users/jason/dev/my_app/apps/web_interface/test/controllers/internal_api/v1/page_controller_test.exs
==> parser

Failed Files:
9: /Users/jason/dev/my_app/apps/parser/test/parser_test.exs
5: /Users/jason/dev/my_app/apps/parser/test/parser_info_test.exs
1: /Users/jason/dev/my_app/apps/parser/test/file_parser_test.exs
==> ftp_handler
```