Go to file
Wojciech Kozlowski 83675c25e6
All checks were successful
Cargo CI / Build and Test (push) Successful in 1m1s
Cargo CI / Lint (push) Successful in 44s
Cargo CI / Build and Test (pull_request) Successful in 2m26s
Cargo CI / Lint (pull_request) Successful in 45s
Missing docstrings (#102)
Closes #98

Reviewed-on: #102
2024-01-12 21:52:06 +01:00
.gitea Have consistent naming for binaries (#91) 2024-01-11 21:29:03 +01:00
src Missing docstrings (#102) 2024-01-12 21:52:06 +01:00
tests IDatabase::load should return D not take a mutable reference of it (#99) 2024-01-12 21:34:01 +01:00
.gitignore Add integration tests to CI (#82) 2024-01-06 16:14:07 +01:00
Cargo.lock Add method to manually add artist metadata (#85) 2024-01-10 22:33:57 +01:00
Cargo.toml Have consistent naming for binaries (#91) 2024-01-11 21:29:03 +01:00
README.md Have consistent naming for binaries (#91) 2024-01-11 21:29:03 +01:00

Music Hoard

Usage notes

Text selection

To select and copy text use the terminal-specific modifier key (on Linux this is usually the Shift key).

Code Coverage

Pre-requisites

rustup component add llvm-tools-preview
cargo install grcov

Generating Code Coverage

env CARGO_TARGET_DIR=codecov \
    cargo clean
env RUSTFLAGS="-C instrument-coverage" \
    LLVM_PROFILE_FILE="codecov/debug/profraw/musichoard-%p-%m.profraw" \
    CARGO_TARGET_DIR=codecov \
    BEETSDIR=./ \
    cargo test --all-features --all-targets
grcov codecov/debug/profraw \
      --binary-path ./codecov/debug/ \
      --output-types html \
      --source-dir . \
      --ignore-not-existing \
      --ignore "tests/*" \
      --ignore "src/main.rs" \
      --ignore "src/bin/musichoard-edit.rs" \
      --excl-start "GRCOV_EXCL_START|mod tests \{" \
      --excl-stop "GRCOV_EXCL_STOP" \
      --output-path ./codecov/debug/coverage/
xdg-open codecov/debug/coverage/index.html

Note that some changes may not be visible until codecov/debug/coverage is removed and the grcov command is rerun.

For most cases cargo clean can be replaced with rm -rf ./codecov/debug/{coverage,profraw}.