From cf68642858769991aa8afdf2fdc49ea372dc1575 Mon Sep 17 00:00:00 2001 From: Boshen Date: Sun, 16 Apr 2023 00:34:11 +0800 Subject: [PATCH] chore: remove --all-features from codecov command We should get a higher codecov from this --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 6d6ddfb3f..5d800ddba 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,6 @@ [alias] lint = "clippy --workspace --all-targets --all-features" -codecov = "llvm-cov nextest --all-features --workspace --ignore-filename-regex tasks" +codecov = "llvm-cov nextest --workspace --ignore-filename-regex tasks" coverage = "run -p oxc_coverage --release --" benchmark = "run -p oxc_benchmark --release --" minsize = "run -p oxc_minsize --release --"