1
0
Fork 0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-05-26 05:46:07 +02:00

Disable the pretty format because of `--show-output`

This commit is contained in:
mo8it 2024-04-30 02:43:51 +02:00
parent 563727f47f
commit 3ae6c208b2

View File

@ -105,14 +105,7 @@ impl Exercise {
let test_success = CargoCmd {
subcommand: "test",
args: &[
"--",
"--color",
"always",
"--show-output",
"--format",
"pretty",
],
args: &["--", "--color", "always", "--show-output"],
exercise_name: self.name,
description: "cargo test …",
// Hide warnings because they are shown by Clippy.