1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Show warnings and errors in the tests

This commit is contained in:
mo8it 2024-04-25 16:08:07 +02:00
parent c51f1b3f31
commit 3ce3235294

View File

@ -130,9 +130,9 @@ impl Exercise {
output.clear();
let clippy_args: &[&str] = if self.strict_clippy {
&["--", "-D", "warnings"]
&["--profile", "test", "--", "-D", "warnings"]
} else {
&[]
&["--profile", "test"]
};
let clippy_success =
self.cargo_cmd("clippy", clippy_args, "cargo clippy …", output, dev, true)?;