Skip to content

Commit 8195b96

Browse files
committed
Updating cargo llvm-cov report command
1 parent 048c314 commit 8195b96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
cargo test
4444
uv run -- maturin develop
4545
uv run -- pytest tests --cov=foobar --cov-report xml
46-
cargo llvm-cov --no-run --lcov --output-path coverage.lcov
46+
cargo llvm-cov report --lcov --output-path coverage.lcov
4747
- uses: codecov/codecov-action@v5
4848
with:
4949
files: coverage.lcov,coverage.xml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ cargo llvm-cov clean --workspace
8686
cargo test
8787
uv run -- maturin develop --uv
8888
uv run -- pytest tests --cov=foobar --cov-report xml
89-
cargo llvm-cov --no-run --lcov --output-path coverage.lcov
89+
cargo llvm-cov report --lcov --output-path coverage.lcov
9090
```
9191

9292
First the `cargo llvm-cov clean` command removes any previous profiling

0 commit comments

Comments
 (0)