From 642c3a62a9c2abeb1d3b61d4d4639db75bc02d4a Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Thu, 28 Mar 2024 21:17:16 +0100 Subject: [PATCH] Fix status code --- addons/besseretests/src/runtimescene.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/besseretests/src/runtimescene.gd b/addons/besseretests/src/runtimescene.gd index 506cac7..cdc99bc 100644 --- a/addons/besseretests/src/runtimescene.gd +++ b/addons/besseretests/src/runtimescene.gd @@ -89,8 +89,8 @@ func _ready() -> void: lresu("") # Shutdown - if stats_all == stats_ok: terminate(0) - elif stats_all == stats_ok + stats_warn: terminate(1) + if stats_all == stats_ok + stats_skip: terminate(0) + elif stats_all == stats_ok + stats_warn + stats_skip: terminate(1) else: terminate(2) # Runs a test suite