From 65283a82ece0ee523813753091bf9314b4f994f8 Mon Sep 17 00:00:00 2001 From: ok300 <106775972+ok300@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:33:07 +0100 Subject: [PATCH] Include pure integration tests in `just final-check` --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 4e36977e..67053476 100644 --- a/justfile +++ b/justfile @@ -47,6 +47,9 @@ test: build fi cargo test --lib + # Run pure integration tests + cargo test -p cdk-integration-tests --test integration_tests_pure + # run `cargo clippy` on everything clippy *ARGS="--locked --offline --workspace --all-targets": cargo clippy {{ARGS}}