From 3f9d3aeae6c13e01bc1a3f90f38930babe083935 Mon Sep 17 00:00:00 2001 From: jutty Date: Tue, 23 Dec 2025 22:39:32 -0300 Subject: [PATCH] Add cargo-llvm-cov commands to justfile --- .justfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.justfile b/.justfile index 1dbd7a1..c971f27 100644 --- a/.justfile +++ b/.justfile @@ -130,6 +130,20 @@ test: alias t := test +# Run tests with coverage +[group('checks')] +cover: + cargo llvm-cov test + +alias cv := cover + +# Open test coverage report +[group('checks')] +cover-open: + cargo llvm-cov --open + +alias cvo := cover-open + # FORMATTING # Format all files