chore: install gut quality suite

This commit is contained in:
Rijad Zuzo
2026-07-10 15:59:46 +02:00
parent ce8f71082b
commit 2ed93de6d1
266 changed files with 23057 additions and 21 deletions
+22
View File
@@ -0,0 +1,22 @@
# ------------------------------------------------------------------------------
# This is the entry point when running tests from the editor.
#
# This script should conform to, or ignore, the strictest warning settings.
# ------------------------------------------------------------------------------
extends Node2D
var GutLoader : Object
func _init() -> void:
GutLoader = load("res://addons/gut/gut_loader.gd")
@warning_ignore("unsafe_method_access")
func _ready() -> void:
_post_ready.call_deferred()
func _post_ready():
var runner : Node = load("res://addons/gut/gui/GutRunner.tscn").instantiate()
get_tree().root.add_child(runner)
runner.run_from_editor()