mirror of
https://github.com/Relintai/gdnative_python.git
synced 2025-01-08 15:29:39 +01:00
13 lines
223 B
GDScript3
13 lines
223 B
GDScript3
|
extends Node
|
||
|
|
||
|
var _test_done = false
|
||
|
|
||
|
func _process(delta):
|
||
|
if _test_done:
|
||
|
return
|
||
|
for path in ["pymain", "gdmain"]:
|
||
|
# for path in ["pymain"]:
|
||
|
self.get_node(path).run_tests()
|
||
|
_test_done = true
|
||
|
self.get_tree().quit()
|