Skip to content

Commit

Permalink
Use cargo nextest for running all tests locally
Browse files Browse the repository at this point in the history
Signed-off-by: James Rhodes <[email protected]>
  • Loading branch information
jarhodes314 committed Oct 13, 2023
1 parent cc1aa32 commit 5773e2b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ default:
# Install necessary tools
install-tools:
rustup component add rustfmt --toolchain nightly
cargo install cargo-sort
cargo install cargo-sort cargo-nextest

# Check if necessary tools are installed
[private]
Expand Down Expand Up @@ -62,7 +62,8 @@ release *ARGS:

# Run unit tests
test:
cargo test --no-fail-fast --all-features --all-targets
cargo nextest run --no-fail-fast --all-features --all-targets
cargo test --doc --no-fail-fast --all-features

# Install integration test dependencies
setup-integration-test *ARGS:
Expand Down

0 comments on commit 5773e2b

Please sign in to comment.