chore: add integration test task to make file

This commit is contained in:
r4bbit 2026-06-28 15:25:28 +02:00
parent 255f87f38f
commit 4bc2bde25f
No known key found for this signature in database
GPG Key ID: E95F1E9447DC91A9

View File

@ -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