Skip to content

Commit

Permalink
fmt justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Oct 16, 2023
1 parent 558da78 commit 2d992d9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ test-msrv:

# Run tests on all crates in workspace using specified (or default) toolchain.
test toolchain="":
cargo {{toolchain}} hack --workspace test --no-fail-fast --no-default-features
cargo {{toolchain}} hack --workspace test --no-fail-fast
cargo {{toolchain}} hack --workspace test --no-fail-fast --all-features
cargo {{ toolchain }} hack --workspace test --no-fail-fast --no-default-features
cargo {{ toolchain }} hack --workspace test --no-fail-fast
cargo {{ toolchain }} hack --workspace test --no-fail-fast --all-features

# Run tests on all crates in workspace and produce coverage file (Codecov format).
test-coverage-codecov toolchain="":
cargo {{toolchain}} llvm-cov --workspace --all-features --codecov --output-path codecov.json
cargo {{ toolchain }} llvm-cov --workspace --all-features --codecov --output-path codecov.json

# Run tests on all crates in workspace and produce coverage file (lcov format).
test-coverage-lcov toolchain="":
cargo {{toolchain}} llvm-cov --workspace --all-features --lcov --output-path lcov.info
cargo {{ toolchain }} llvm-cov --workspace --all-features --lcov --output-path lcov.info

# Check project.
check:
Expand Down

0 comments on commit 2d992d9

Please sign in to comment.