Merge pull request 'add coverage to justfile' (#155) from update-justfile into main

Reviewed-on: #155
This commit was merged in pull request #155.
This commit is contained in:
2025-09-11 16:03:41 +02:00

View File

@@ -17,5 +17,15 @@ build:
cargo build --all-features cargo build --all-features
docs: docs:
export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options"
cargo +nightly doc --all-features
docs-html:
export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options" export RUSTDOCFLAGS="--cfg docsrs --generate-link-to-definition -Z unstable-options"
cargo +nightly doc --all-features --open cargo +nightly doc --all-features --open
coverage:
cargo llvm-cov nextest
coverage-html:
cargo llvm-cov nextest --html --open