From d56551076697179606f27c3721b1b88c3098714d Mon Sep 17 00:00:00 2001 From: Yason Khaburzaniya Date: Tue, 17 Sep 2024 11:50:51 -0700 Subject: [PATCH] chore: add convenience target to test one package --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index e46a8f8c74..208d074474 100644 --- a/Makefile +++ b/Makefile @@ -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