From 065a4e4937a03424ec1d5141f1496e9d1bb40765 Mon Sep 17 00:00:00 2001 From: r4bbit <445106+0x-r4bbit@users.noreply.github.com> Date: Sun, 28 Jun 2026 15:25:28 +0200 Subject: [PATCH] chore: add integration test task to make file --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 59e30c7..4a691f2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: clippy clippy-guest clippy-all test fmt idl +.PHONY: clippy clippy-guest clippy-all test integration-test fmt idl clippy: RISC0_SKIP_BUILD=1 cargo clippy --workspace --all-targets -- -D warnings @@ -13,6 +13,9 @@ clippy-all: clippy clippy-guest test: RISC0_DEV_MODE=1 cargo test --workspace +integration-test: + RISC0_DEV_MODE=1 cargo test -p integration_tests + fmt: cargo +nightly fmt --all