TestSuite_DPE.py 1.1 KB

12345678910111213141516171819202122232425262728
  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, EditorTestSuite
  8. @pytest.mark.SUITE_main
  9. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  10. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  11. class TestAutomationDPE(EditorTestSuite):
  12. # Disable Batch Mode and autotest mode and enable the DPE
  13. global_extra_cmdline_args = ["-ed_enableDPEInspector=true"]
  14. @pytest.mark.xfail(reason="https://github.com/o3de/o3de/issues/15718, https://github.com/o3de/o3de/issues/15704, "
  15. "https://github.com/o3de/o3de/issues/15695, https://github.com/o3de/o3de/issues/15579")
  16. class test_DPE_AllComponentsAddedRemoved(EditorSingleTest):
  17. from .EditorScripts import DPE_AllComponentsAddedRemoved as test_module
  18. class test_DPE_AllComponentPropertyTypesEditable(EditorSingleTest):
  19. from .EditorScripts import DPE_AllComponentPropertyTypesEditable as test_module