TestSuite_Periodic.py 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 EditorSingleTest, EditorBatchedTest, EditorParallelTest, EditorTestSuite
  8. @pytest.mark.SUITE_periodic
  9. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  10. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  11. class TestAutomation(EditorTestSuite):
  12. class test_GradientGenerators_Incompatibilities(EditorBatchedTest):
  13. from .EditorScripts import GradientGenerators_Incompatibilities as test_module
  14. class test_GradientModifiers_Incompatibilities(EditorBatchedTest):
  15. from .EditorScripts import GradientModifiers_Incompatibilities as test_module
  16. class test_GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin(EditorBatchedTest):
  17. from .EditorScripts import GradientPreviewSettings_ClearingPinnedEntitySetsPreviewToOrigin as test_module
  18. class test_GradientSampling_GradientReferencesAddRemoveSuccessfully(EditorBatchedTest):
  19. from .EditorScripts import GradientSampling_GradientReferencesAddRemoveSuccessfully as test_module
  20. @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/13134")
  21. class test_GradientSurfaceTagEmitter_ComponentDependencies(EditorBatchedTest):
  22. from .EditorScripts import GradientSurfaceTagEmitter_ComponentDependencies as test_module
  23. class test_GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully(EditorBatchedTest):
  24. from .EditorScripts import GradientSurfaceTagEmitter_SurfaceTagsAddRemoveSuccessfully as test_module
  25. class test_GradientTransform_ComponentIncompatibleWithExpectedGradients(EditorBatchedTest):
  26. from .EditorScripts import GradientTransform_ComponentIncompatibleWithExpectedGradients as test_module
  27. class test_GradientTransform_ComponentIncompatibleWithSpawners(EditorBatchedTest):
  28. from .EditorScripts import GradientTransform_ComponentIncompatibleWithSpawners as test_module
  29. class test_GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange(EditorBatchedTest):
  30. from .EditorScripts import GradientTransform_FrequencyZoomCanBeSetBeyondSliderRange as test_module
  31. class test_GradientTransform_RequiresShape(EditorBatchedTest):
  32. from .EditorScripts import GradientTransform_RequiresShape as test_module
  33. class test_ImageGradient_BilinearFiltering(EditorBatchedTest):
  34. from .EditorScripts import ImageGradient_BilinearFiltering as test_module
  35. class test_ImageGradient_ModifiesSurfaces(EditorBatchedTest):
  36. from .EditorScripts import ImageGradient_ModifiesSurfaces as test_module
  37. class test_ImageGradient_ProcessedImageAssignedSuccessfully(EditorBatchedTest):
  38. from .EditorScripts import ImageGradient_ProcessedImageAssignedSuccessfully as test_module
  39. class test_ImageGradient_RequiresShape(EditorBatchedTest):
  40. from .EditorScripts import ImageGradient_RequiresShape as test_module