Skip to content

Commit

Permalink
Merge pull request nervosnetwork#4301 from eval-exec/exec/ci/no-fail-…
Browse files Browse the repository at this point in the history
…fast

Add `--no-fail-fast` argument for `cargo-nextest`
  • Loading branch information
zhangsoledad authored Jan 16, 2024
2 parents e888ea2 + 2b75a74 commit a053514
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ cli-test: prod # Run ckb command line usage bats test

.PHONY: test
test: ## Run all tests, including some tests can be time-consuming to execute (tagged with [ignore])
cargo nextest run ${VERBOSE} --features ${CKB_FEATURES} --workspace --hide-progress-bar --success-output immediate-final --failure-output immediate-final --run-ignored all
cargo nextest run ${VERBOSE} --features ${CKB_FEATURES} --workspace --no-fail-fast --hide-progress-bar --success-output immediate-final --failure-output immediate-final --run-ignored all
$(MAKE) doc-test

.PHONY: quick-test
quick-test: ## Run all tests, excluding some tests can be time-consuming to execute (tagged with [ignore])
cargo nextest run ${VERBOSE} --features ${CKB_FEATURES} --workspace --hide-progress-bar --success-output immediate-final --failure-output immediate-final --run-ignored default
cargo nextest run ${VERBOSE} --features ${CKB_FEATURES} --workspace --no-fail-fast --hide-progress-bar --success-output immediate-final --failure-output immediate-final --run-ignored default
$(MAKE) doc-test

.PHONY: cov-install-tools
Expand Down

0 comments on commit a053514

Please sign in to comment.