mirror of
https://github.com/Relintai/regression-test-project.git
synced 2024-12-25 14:07:21 +01:00
Disable some classes (#41)
This commit is contained in:
parent
0391628dbe
commit
45d4c3ad3e
@ -12,15 +12,16 @@ var time_to_show: int = 25 * 1000 # How long test works in miliseconds
|
|||||||
|
|
||||||
var time_for_each_step : int = -1
|
var time_for_each_step : int = -1
|
||||||
|
|
||||||
|
|
||||||
# Each scene runs alone
|
# Each scene runs alone
|
||||||
const alone_steps : Array = [
|
const alone_steps : Array = [
|
||||||
"res://Nodes/Nodes.tscn",
|
"res://Nodes/Nodes.tscn",
|
||||||
"res://ReparentingDeleting/ReparentingDeleting.tscn",
|
"res://ReparentingDeleting/ReparentingDeleting.tscn",
|
||||||
"res://Physics/2D/Physics2D.tscn",
|
"res://Physics/2D/Physics2D.tscn",
|
||||||
"res://Rendering/Lights2D/Lights2D.tscn",
|
# "res://Rendering/Lights2D/Lights2D.tscn",
|
||||||
"res://Rendering/Lights3D/Lights3D.tscn",
|
# "res://Rendering/Lights3D/Lights3D.tscn",
|
||||||
"res://AutomaticBugs/FunctionExecutor.tscn", # Only Needs to be executed once, but this is workaround a little
|
"res://AutomaticBugs/FunctionExecutor.tscn", # Only Needs to be executed once, but this is workaround a little
|
||||||
"res://Physics/3D/Physics3D.tscn", # Loads very long but isn't necessarry so we skip it now
|
# "res://Physics/3D/Physics3D.tscn", # Loads very long but isn't necessarry so we skip it now
|
||||||
]
|
]
|
||||||
|
|
||||||
# All scenes run in one step
|
# All scenes run in one step
|
||||||
|
@ -281,6 +281,15 @@ var disabled_classes : Array = [
|
|||||||
"_Thread",
|
"_Thread",
|
||||||
"_Semaphore",
|
"_Semaphore",
|
||||||
"_Mutex",
|
"_Mutex",
|
||||||
|
|
||||||
|
|
||||||
|
# Creating them is really slow in Godot 4.0
|
||||||
|
"ColorPicker",
|
||||||
|
"FileDialog",
|
||||||
|
"ColorPickerButton",
|
||||||
|
"PhysicalSkyMaterial",
|
||||||
|
"ProceduralSkyMaterial"
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
# GH 47358
|
# GH 47358
|
||||||
|
Loading…
Reference in New Issue
Block a user