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
- Host: GitHub
- URL: https://github.com/axelson/ex_unit_file_formatter
- Owner: axelson
- License: mit
- Created: 2018-06-13T05:06:37.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2025-02-23T17:43:30.000Z (over 1 year ago)
- Last Synced: 2025-10-08T12:58:13.615Z (9 months ago)
- Language: Elixir
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```