Skip to content

Commit

Permalink
chore: add convenience target to test one package
Browse files Browse the repository at this point in the history
  • Loading branch information
yasonk committed Sep 17, 2024
1 parent a4a4925 commit d565510
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ test-skip-proptests: ## Runs all tests, except property-based tests
test-loom: ## Runs all loom-based tests
RUSTFLAGS="--cfg loom" cargo nextest run --cargo-profile test-release --features testing -E 'test(#*loom)'

.PHONY: test-package
test-package: ## Tests specific package: make test-package package=miden-vm
$(DEBUG_ASSERTIONS) cargo nextest run --cargo-profile test-release --features testing -p $(package)

# --- checking ------------------------------------------------------------------------------------

.PHONY: check
Expand Down

0 comments on commit d565510

Please sign in to comment.