We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0074b00 + 9594ba0 commit 685dcbcCopy full SHA for 685dcbc
tests/ui.rs
@@ -217,15 +217,11 @@ fn run_tests(
217
ui_test::default_file_filter,
218
// This could be used to overwrite the `Config` on a per-test basis.
219
|_, _| {},
220
- (
221
- match args.format {
222
- Format::Terse => status_emitter::Text::quiet(),
223
- Format::Pretty => status_emitter::Text::verbose(),
224
- },
225
- status_emitter::Gha::</* GHA Actions groups*/ false> {
226
- name: format!("{mode:?} {path} ({target})"),
227
228
- ),
+ // No GHA output as that would also show in the main rustc repo.
+ match args.format {
+ Format::Terse => status_emitter::Text::quiet(),
+ Format::Pretty => status_emitter::Text::verbose(),
+ },
229
)
230
}
231
0 commit comments