Skip to content

Commit

Permalink
[wip] see how CI deals with ANSI
Browse files Browse the repository at this point in the history
  • Loading branch information
Lysxia committed Dec 3, 2024
1 parent 44b357f commit 5396b5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion creusot/tests/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ fn glob_runner<B>(s: &str, command_builder: B, should_succeed: bool)
where
B: Fn(&Path) -> Option<std::process::Command>,
{
let is_tty = std::io::stdout().is_terminal();
// let is_tty = std::io::stdout().is_terminal();
let is_tty = true;
let mut out =
StandardStream::stdout(if is_tty { ColorChoice::Always } else { ColorChoice::Never });

Expand Down

0 comments on commit 5396b5f

Please sign in to comment.