Skip to content

Commit 6319f63

Browse files
committed
chore(e2e): disable log group in github action
until we can figure out how to make the logs group work correctly when the e2e is retry by `nick-fields/retry` (currently the group before the retry are lost)
1 parent b032862 commit 6319f63

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

mithril-test-lab/mithril-end-to-end/src/utils/formatting.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ impl LogGroup {
1010
pub fn new(name: &str, title: &str) -> Self {
1111
let group_title = Self::group_title(name, title);
1212
if is_running_in_github_actions() {
13-
println!("::group::{group_title}");
13+
// Note: Disabled until we can figure out how to make the logs group work correctly when
14+
// the e2e is retry by `nick-fields/retry` (currently the group before the retry are lost)
15+
// println!("::group::{group_title}");
1416
}
1517
Self::print_header(&group_title);
1618

@@ -31,7 +33,7 @@ impl LogGroup {
3133
impl Drop for LogGroup {
3234
fn drop(&mut self) {
3335
if is_running_in_github_actions() {
34-
println!("::endgroup::");
36+
// println!("::endgroup::");
3537
}
3638
}
3739
}

0 commit comments

Comments
 (0)