-
Notifications
You must be signed in to change notification settings - Fork 710
devx: Fix whitespace job output is too verbose #10744
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
Comments
Not to diminish the problem but if I see there's a whitespace problem, I'll run the fix locally right away (and use
|
That is useful if you wish to locally install |
This would be best fixed upstream at https://github.com/agda/fix-whitespace . |
yeah, piping it through grep sounds like a great workaround to me. |
Using --verbose on a large project prints out too much output (see haskell/cabal#10744) Printing out all the violations if there are a lot of them is quite slow, printing out a lot to stdout is not that fast. Therefore we reach a compromise where we print up to 10 reasons for failure and omit the rest. If you want all the failures you can use --verbose. Fixes agda#48
Consider this log: https://github.com/haskell/cabal/actions/runs/12749677510/job/35532656499?pr=10731
I couldn't see immediately where the failure was.
On line 1896, I discover:
Either, the failures should be reported at the end, or run in non-verbose mode.
The text was updated successfully, but these errors were encountered: