fix(Makefile): Graceful cargo-nextest install (#4009)

Co-authored-by: refcell <refcell@oplabs.co>
This commit is contained in:
refcell.eth
2023-08-09 17:46:29 -04:00
committed by GitHub
parent 24def95475
commit 4de1ff0691

View File

@ -110,6 +110,7 @@ COV_FILE := lcov.info
.PHONY: test-unit
test-unit: ## Run unit tests.
cargo install cargo-nextest --locked
cargo nextest run $(UNIT_TEST_ARGS)
.PHONY: cov-unit