mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-06 01:53:30 +02:00
Use colors inside the test
This commit is contained in:
+11
-1
@@ -69,7 +69,17 @@ impl Exercise {
|
|||||||
pub fn run(&self) -> Result<Output> {
|
pub fn run(&self) -> Result<Output> {
|
||||||
match self.mode {
|
match self.mode {
|
||||||
Mode::Run => self.cargo_cmd("run", &[]),
|
Mode::Run => self.cargo_cmd("run", &[]),
|
||||||
Mode::Test => self.cargo_cmd("test", &["--", "--nocapture", "--format", "pretty"]),
|
Mode::Test => self.cargo_cmd(
|
||||||
|
"test",
|
||||||
|
&[
|
||||||
|
"--",
|
||||||
|
"--color",
|
||||||
|
"always",
|
||||||
|
"--nocapture",
|
||||||
|
"--format",
|
||||||
|
"pretty",
|
||||||
|
],
|
||||||
|
),
|
||||||
Mode::Clippy => self.cargo_cmd(
|
Mode::Clippy => self.cargo_cmd(
|
||||||
"clippy",
|
"clippy",
|
||||||
&["--", "-D", "warnings", "-D", "clippy::float_cmp"],
|
&["--", "-D", "warnings", "-D", "clippy::float_cmp"],
|
||||||
|
|||||||
Reference in New Issue
Block a user