|
@@ -15,13 +15,9 @@ from ly_test_tools.o3de.editor_test import EditorBatchedTest, EditorTestSuite
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
class TestAutomationNoOverrides(EditorTestSuite):
|
|
class TestAutomationNoOverrides(EditorTestSuite):
|
|
|
|
|
|
- # These tests will execute with prefab overrides enabled
|
|
|
|
|
|
+ # These tests will execute with prefab overrides disabled
|
|
EditorTestSuite.global_extra_cmdline_args.append("--regset=O3DE/Preferences/Prefabs/EnableOverridesUx=false")
|
|
EditorTestSuite.global_extra_cmdline_args.append("--regset=O3DE/Preferences/Prefabs/EnableOverridesUx=false")
|
|
|
|
|
|
- # Create Prefab Tests
|
|
|
|
- class test_CreatePrefab_CreationFailsWithDifferentRootEntities(EditorBatchedTest):
|
|
|
|
- from .tests.create_prefab import CreatePrefab_CreationFailsWithDifferentRootEntities as test_module
|
|
|
|
-
|
|
|
|
# Spawnables Tests
|
|
# Spawnables Tests
|
|
|
|
|
|
class test_SC_Spawnables_DespawnOnEntityDeactivate(EditorBatchedTest):
|
|
class test_SC_Spawnables_DespawnOnEntityDeactivate(EditorBatchedTest):
|
|
@@ -53,35 +49,3 @@ class TestAutomationNoOverrides(EditorTestSuite):
|
|
|
|
|
|
class test_Lua_Spawnables_SimpleSpawnAndDespawn(EditorBatchedTest):
|
|
class test_Lua_Spawnables_SimpleSpawnAndDespawn(EditorBatchedTest):
|
|
from .tests.spawnables import Lua_Spawnables_SimpleSpawnAndDespawn as test_module
|
|
from .tests.spawnables import Lua_Spawnables_SimpleSpawnAndDespawn as test_module
|
|
-
|
|
|
|
-
|
|
|
|
[email protected]_periodic
|
|
|
|
[email protected]("launcher_platform", ['windows_editor'])
|
|
|
|
[email protected]("project", ["AutomatedTesting"])
|
|
|
|
-class TestAutomationOverrides(EditorTestSuite):
|
|
|
|
-
|
|
|
|
- # These tests will execute with prefab overrides enabled
|
|
|
|
- EditorTestSuite.global_extra_cmdline_args.append("--regset=O3DE/Preferences/Prefabs/EnableOverridesUx=true")
|
|
|
|
-
|
|
|
|
- # Overrides Tests
|
|
|
|
-
|
|
|
|
- class test_AddEntity_UnderUnfocusedInstanceAsOverride(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import AddEntity_UnderUnfocusedInstanceAsOverride as test_module
|
|
|
|
-
|
|
|
|
- class test_DeleteEntity_UnderImmediateInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import DeleteEntity_UnderImmediateInstance as test_module
|
|
|
|
-
|
|
|
|
- class test_DeleteEntity_UnderNestedInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import DeleteEntity_UnderNestedInstance as test_module
|
|
|
|
-
|
|
|
|
- class test_DeletePrefab_UnderImmediateInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import DeletePrefab_UnderImmediateInstance as test_module
|
|
|
|
-
|
|
|
|
- class test_DeletePrefab_UnderNestedInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import DeletePrefab_UnderNestedInstance as test_module
|
|
|
|
-
|
|
|
|
- class test_EditEntity_UnderImmediateInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import EditEntity_UnderImmediateInstance as test_module
|
|
|
|
-
|
|
|
|
- class test_EditEntity_UnderNestedInstance(EditorBatchedTest):
|
|
|
|
- from .tests.overrides import EditEntity_UnderNestedInstance as test_module
|
|
|