From 2e89d38126e9a67102eaf01fac423111df0149bb Mon Sep 17 00:00:00 2001 From: Sandipsinh Rathod Date: Thu, 21 Nov 2024 19:51:55 -0500 Subject: [PATCH] fix args --- tests/ci.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ci.rs b/tests/ci.rs index 9b1c86e..49e62c4 100644 --- a/tests/ci.rs +++ b/tests/ci.rs @@ -28,7 +28,7 @@ fn generate() { ) .add_step( Cargo::new("test") - .args("--all --all-targets --all-features --fix --allow-staged --allow-dirty") + .args("--all --all-targets --all-features") .if_condition("env.LINT_MODE == 'fix'") .name("Cargo Test"), ) @@ -42,7 +42,7 @@ fn generate() { .add_step( Cargo::new("clippy") .nightly() - .args("--all-features --workspace -- -D warnings") + .args("--all-features --workspace --fix --allow-staged --allow-dirty") .name("Cargo Clippy"), ) .add_step(