TestSuite_Periodic.py 718 B

12345678910111213141516171819
  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 shutil, os, time
  7. import pytest
  8. import ly_test_tools.o3de.editor_test_utils as editor_test_utils
  9. from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSingleTest
  10. @pytest.mark.SUITE_periodic
  11. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  12. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  13. class TestAutomation(EditorTestSuite):
  14. class MaterialProperty_ProcPrefabWorks(EditorSingleTest):
  15. from .tests import MaterialProperty_ProcPrefabWorks as test_module