Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Counts per error kind #100

Open
pgorod opened this issue Sep 11, 2018 · 1 comment · May be fixed by #194
Open

Counts per error kind #100

pgorod opened this issue Sep 11, 2018 · 1 comment · May be fixed by #194

Comments

@pgorod
Copy link

pgorod commented Sep 11, 2018

Feature request:

The final report at the end of execution currently has this aspect:

========================================================================
✘✘✘ failed in 1.46113043s
260 errors in 225 documents

To facilitate working through large numbers of errors, it would be nice to see something like this instead:

========================================================================
✘✘✘ failed in 1.46113043s
180 "target does not exist" errors in 145 documents
80  "hash does not exist" errors in 80 documents
------------------------------------------------------------------------
Total 260 errors in 225 documents

Thanks

@pgorod
Copy link
Author

pgorod commented Sep 12, 2018

Emulating this feature in bash:

./bin/htmltest  | tee >(grep -v 'errors in\|failed in\|htmltest started\|======' | cut -d '-' -f 1 | sort | uniq -c -w 10)

@wjdp wjdp linked a pull request May 28, 2022 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants