TestSuite_Main_Null_Render_Component_02.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 EditorBatchedTest, EditorTestSuite
  9. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  10. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  11. class TestAutomation(EditorTestSuite):
  12. @pytest.mark.test_case_id("C32078122")
  13. class AtomEditorComponents_GridAdded(EditorBatchedTest):
  14. from Atom.tests import hydra_AtomEditorComponents_GridAdded as test_module
  15. @pytest.mark.test_case_id("C36525671")
  16. class AtomEditorComponents_HDRColorGradingAdded(EditorBatchedTest):
  17. from Atom.tests import hydra_AtomEditorComponents_HDRColorGradingAdded as test_module
  18. @pytest.mark.test_case_id("C32078116")
  19. class AtomEditorComponents_HDRiSkyboxAdded(EditorBatchedTest):
  20. from Atom.tests import hydra_AtomEditorComponents_HDRiSkyboxAdded as test_module
  21. @pytest.mark.test_case_id("C32078117")
  22. class AtomEditorComponents_LightAdded(EditorBatchedTest):
  23. from Atom.tests import hydra_AtomEditorComponents_LightAdded as test_module
  24. @pytest.mark.test_case_id("C36525662")
  25. class AtomEditorComponents_LookModificationAdded(EditorBatchedTest):
  26. from Atom.tests import hydra_AtomEditorComponents_LookModificationAdded as test_module
  27. @pytest.mark.skipif(ly_test_tools.LINUX, reason="https://github.com/o3de/o3de/issues/14007")
  28. @pytest.mark.test_case_id("C32078123")
  29. class AtomEditorComponents_MaterialAdded(EditorBatchedTest):
  30. from Atom.tests import hydra_AtomEditorComponents_MaterialAdded as test_module
  31. @pytest.mark.test_case_id("C36525663")
  32. class AtomEditorComponents_OcclusionCullingPlaneAdded(EditorBatchedTest):
  33. from Atom.tests import hydra_AtomEditorComponents_OcclusionCullingPlaneAdded as test_module