TestSuite_Periodic.py 998 B

123456789101112131415161718192021222324252627
  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. import ly_test_tools
  8. from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSingleTest
  9. @pytest.mark.SUITE_periodic
  10. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  11. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  12. class TestAutomation(EditorTestSuite):
  13. @pytest.mark.skipif(ly_test_tools.LINUX, reason="https://github.com/o3de/o3de/issues/14514")
  14. class SubID_NoChange_MeshChanged(EditorSingleTest):
  15. from .fbx_tests import hydra_SubID_NoChange_MeshChanged as test_module
  16. @pytest.mark.skipif(ly_test_tools.LINUX, reason="https://github.com/o3de/o3de/issues/14514")
  17. class SubID_WarningReported_AssetRemoved(EditorSingleTest):
  18. from .fbx_tests import hydra_SubID_WarningReported_AssetRemoved as test_module