From 00c4307ba7fafe180faa0f32810b6bc3d65c1c2f Mon Sep 17 00:00:00 2001 From: Zxilly Date: Mon, 17 Jun 2024 23:38:05 +0800 Subject: [PATCH] test: early exit for unit test Signed-off-by: Zxilly --- scripts/tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/tests.py b/scripts/tests.py index d04eefc41d..e0fd6765b5 100644 --- a/scripts/tests.py +++ b/scripts/tests.py @@ -15,6 +15,9 @@ def run_unit_tests(full: bool, wasm: bool, no_embed: bool): + if not full and not wasm and not no_embed: + return + log("Running unit tests...") load_remote_for_tui_test()