Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There is currently a major problem with the CI output:
The information you need to see never appears in the visible log.
This is because our logs are very verbose, and list (A) every test as it runs, and (B) every unsupported test. This can be thousands of lines.
(A) was introduced by me when I disabled the PTY progress bar, which does not play nice with log files. That change was an improvement, but I have now disabled the PTY on the builders, so we can go back to passing
-s
. When-s
is passed but no PTY is available, it prints a log friendly progress indicator.(B) is solved here by disabling the printing of unsupported tests at the end of the test suite. While it can be useful on occasion to audit the list of unsupported tests, it's far from a common operation. Instead people want to see the log of their failure. We should already be uploading the results as XUnit XML, so if auditing is needed, it can be done using that.
Hopefully this change will make it so that the test failures appear in the actual log output