TestSuite_Main.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. """
  6. import pytest
  7. from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorBatchedTest
  8. @pytest.mark.SUITE_main
  9. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  10. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  11. class TestAutomation(EditorTestSuite):
  12. class test_AxisAlignedBoxShape_ConfigurationWorks(EditorBatchedTest):
  13. from .EditorScripts import TerrainPhysicsCollider_ChangesSizeWithAxisAlignedBoxShapeChanges as test_module
  14. @pytest.mark.skip(reason="GHI #9850: Test Periodically Fails")
  15. class test_Terrain_SupportsPhysics(EditorBatchedTest):
  16. from .EditorScripts import Terrain_SupportsPhysics as test_module
  17. class test_TerrainHeightGradientList_AddRemoveGradientWorks(EditorBatchedTest):
  18. from .EditorScripts import TerrainHeightGradientList_AddRemoveGradientWorks as test_module
  19. class test_TerrainSystem_VegetationSpawnsOnTerrainSurfaces(EditorBatchedTest):
  20. from .EditorScripts import TerrainSystem_VegetationSpawnsOnTerrainSurfaces as test_module
  21. class test_TerrainMacroMaterialComponent_MacroMaterialActivates(EditorBatchedTest):
  22. from .EditorScripts import TerrainMacroMaterialComponent_MacroMaterialActivates as test_module
  23. class test_TerrainWorld_ConfigurationWorks(EditorBatchedTest):
  24. from .EditorScripts import Terrain_World_ConfigurationWorks as test_module