1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-21 02:50:10 +00:00

build: add coverage recipes to justfile

This commit is contained in:
Rob Ede 2024-06-10 01:58:13 +01:00
parent 7f529e35b2
commit 53086a90a6
No known key found for this signature in database
GPG key ID: 97C636207D3EF933
2 changed files with 10 additions and 1 deletions

View file

@ -27,7 +27,8 @@ fn bare_address(val: &str) -> &str {
val.split("]:")
.next()
.map(|s| s.trim_start_matches('[').trim_end_matches(']'))
// This shouldn't *actually* ever happen
// this indicates that the IPv6 address is malformed so shouldn't
// usually happen, but if it does, just return the original input
.unwrap_or(val)
} else {
val.split(':').next().unwrap_or(val)

View file

@ -53,6 +53,14 @@ test-docs toolchain="": && doc
# Test workspace.
test-all toolchain="": (test toolchain) (test-docs toolchain)
# Test workspace and generate Codecov coverage file.
test-coverage-codecov toolchain="":
cargo {{ toolchain }} llvm-cov --workspace {{ all_crate_features }} --codecov --output-path codecov.json
# Test workspace and generate LCOV coverage file.
test-coverage-lcov toolchain="":
cargo {{ toolchain }} llvm-cov --workspace {{ all_crate_features }} --lcov --output-path lcov.info
# Document crates in workspace.
doc *args:
RUSTDOCFLAGS="--cfg=docsrs -Dwarnings" cargo +nightly doc --no-deps --workspace {{ all_crate_features }} {{ args }}