Skip to content

Commit

Permalink
Use nextest when running unit tests for the main set of crates
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed Nov 15, 2023
1 parent 30cdbdf commit cbe6979
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,8 @@ test-stage-0-wast:

# test packages
test-stage-1-test-all:
$(CARGO_BINARY) test $(CARGO_TARGET_FLAG) --all --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked
$(CARGO_BINARY) nextest run $(CARGO_TARGET_FLAG) --workspace --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked
$(CARGO_BINARY) test --doc $(CARGO_TARGET_FLAG) --workspace --release $(exclude_tests) --exclude wasmer-c-api-test-runner --exclude wasmer-capi-examples-runner $(compiler_features) --locked
test-stage-2-test-compiler-cranelift-nostd:
$(CARGO_BINARY) test $(CARGO_TARGET_FLAG) --manifest-path lib/compiler-cranelift/Cargo.toml --release --no-default-features --features=std --locked
test-stage-3-test-compiler-singlepass-nostd:
Expand Down

0 comments on commit cbe6979

Please sign in to comment.