nextest-rs / nextest

A next-generation test runner for Rust.
https://nexte.st
Apache License 2.0
2.2k stars 97 forks source link

Make nextest work with grcov #810

Closed woss closed 1 year ago

woss commented 1 year ago

I'm trying to setup the grcov with the nextest and but i am keep getting this error image

the command is this then the grcov is triggered LLVM_PROFILE_FILE="grcov-nextest-%p-%m.profraw" NEXTEST_TEST_THREADS=1 cargo nextest run

Any help is appreciated.

sunshowers commented 1 year ago

Thanks for the report! Nextest works with llvm-cov: https://nexte.st/book/test-coverage.html

I don't know if anyone's integrated nextest with grcov -- there might be some integration work required to make that work.

woss commented 1 year ago

@sunshowers indeed, not sure how i missed that :) thankssss