123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- """
- Copyright (c) Contributors to the Open 3D Engine Project.
- For complete copyright and license terms please see the LICENSE at the root of this distribution.
- SPDX-License-Identifier: Apache-2.0 OR MIT
- """
- import pytest
- from ly_test_tools.o3de.editor_test import EditorSingleTest, EditorSharedTest, EditorParallelTest, EditorTestSuite
- @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
- @pytest.mark.parametrize("project", ["AutomatedTesting"])
- class TestAutomation(EditorTestSuite):
- class test_LandscapeCanvas_AreaNodes_DependentComponentsAdded(EditorSharedTest):
- from .EditorScripts import AreaNodes_DependentComponentsAdded as test_module
- class test_LandscapeCanvas_AreaNodes_EntityCreatedOnNodeAdd(EditorSharedTest):
- from .EditorScripts import AreaNodes_EntityCreatedOnNodeAdd as test_module
- class test_LandscapeCanvas_AreaNodes_EntityRemovedOnNodeDelete(EditorSharedTest):
- from .EditorScripts import AreaNodes_EntityRemovedOnNodeDelete as test_module
- class test_LandscapeCanvas_Component_AddedRemoved(EditorSharedTest):
- from .EditorScripts import Component_AddedRemoved as test_module
- class test_LandscapeCanvas_ComponentUpdates_UpdateGraph(EditorSharedTest):
- from .EditorScripts import ComponentUpdates_UpdateGraph as test_module
- @pytest.mark.skip(reason="https://github.com/o3de/o3de/issues/10126")
- class test_LandscapeCanvas_Edit_DisabledNodeDuplication(EditorSharedTest):
- from .EditorScripts import Edit_DisabledNodeDuplication as test_module
- class test_LandscapeCanvas_Edit_UndoNodeDelete_PrefabEntity(EditorSharedTest):
- from .EditorScripts import Edit_UndoNodeDelete_PrefabEntity as test_module
- class test_LandscapeCanvas_GradientMixer_NodeConstruction(EditorSharedTest):
- from .EditorScripts import GradientMixer_NodeConstruction as test_module
- class test_LandscapeCanvas_GradientModifierNodes_EntityCreatedOnNodeAdd(EditorSharedTest):
- from .EditorScripts import GradientModifierNodes_EntityCreatedOnNodeAdd as test_module
- class test_LandscapeCanvas_GradientModifierNodes_EntityRemovedOnNodeDelete(EditorSharedTest):
- from .EditorScripts import GradientModifierNodes_EntityRemovedOnNodeDelete as test_module
- class test_LandscapeCanvas_GradientNodes_DependentComponentsAdded(EditorSharedTest):
- from .EditorScripts import GradientNodes_DependentComponentsAdded as test_module
- class test_LandscapeCanvas_GradientNodes_EntityCreatedOnNodeAdd(EditorSharedTest):
- from .EditorScripts import GradientNodes_EntityCreatedOnNodeAdd as test_module
- class test_LandscapeCanvas_GradientNodes_EntityRemovedOnNodeDelete(EditorSharedTest):
- from .EditorScripts import GradientNodes_EntityRemovedOnNodeDelete as test_module
- @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/2201")
- class test_LandscapeCanvas_GraphClosed_OnEntityDelete(EditorSharedTest):
- from .EditorScripts import GraphClosed_OnEntityDelete as test_module
- class test_LandscapeCanvas_GraphClosed_OnLevelChange(EditorSharedTest):
- from .EditorScripts import GraphClosed_OnLevelChange as test_module
- class test_LandscapeCanvas_GraphClosed_TabbedGraphClosesIndependently(EditorSharedTest):
- from .EditorScripts import GraphClosed_TabbedGraph as test_module
- class test_LandscapeCanvas_GraphUpdates_UpdateComponents(EditorSharedTest):
- from .EditorScripts import GraphUpdates_UpdateComponents as test_module
- class test_LandscapeCanvas_LayerExtenderNodes_ComponentEntitySync(EditorSharedTest):
- from .EditorScripts import LayerExtenderNodes_ComponentEntitySync as test_module
- class test_LandscapeCanvas_NewGraph_CreatedSuccessfully(EditorSharedTest):
- from .EditorScripts import NewGraph_CreatedSuccessfully as test_module
- class test_LandscapeCanvas_Prefab_CreateInstantiate(EditorSharedTest):
- from .EditorScripts import Prefab_CreateInstantiate as test_module
- class test_LandscapeCanvas_ShapeNodes_EntityCreatedOnNodeAdd(EditorSharedTest):
- from .EditorScripts import ShapeNodes_EntityCreatedOnNodeAdd as test_module
- class test_LandscapeCanvas_ShapeNodes_EntityRemovedOnNodeDelete(EditorSharedTest):
- from .EditorScripts import ShapeNodes_EntityRemovedOnNodeDelete as test_module
- class test_LandscapeCanvas_SlotConnections_UpdateComponentReferences(EditorSharedTest):
- from .EditorScripts import SlotConnections_UpdateComponentReferences as test_module
- class test_LandscapeCanvas_ExistingTerrainSetups_GraphSuccessfully(EditorSharedTest):
- from .EditorScripts import Terrain_ExistingSetups_GraphSuccessfully as test_module
- class test_LandscapeCanvas_Terrain_NodeConstruction(EditorSharedTest):
- from .EditorScripts import Terrain_NodeConstruction as test_module
- class test_LandscapeCanvas_TerrainExtenderNodes_ComponentEntitySync(EditorSharedTest):
- from .EditorScripts import TerrainExtenderNodes_ComponentEntitySync as test_module
- class test_LandscapeCanvas_TerrainNodes_DependentComponentsAdded(EditorSharedTest):
- from .EditorScripts import TerrainNodes_DependentComponentsAdded as test_module
- class test_LandscapeCanvas_TerrainNodes_EntityCreatedOnNodeAdd(EditorSharedTest):
- from .EditorScripts import TerrainNodes_EntityCreatedOnNodeAdd as test_module
- class test_LandscapeCanvas_TerrainNodes_EntityRemovedOnNodeDelete(EditorSharedTest):
- from .EditorScripts import TerrainNodes_EntityRemovedOnNodeDelete as test_module
|