TestSuite_Periodic_DX12.py 1.1 KB

1234567891011121314151617181920212223242526272829303132
  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. # This suite consists of all test cases that are passing and have been verified.
  7. import pytest
  8. import os
  9. import sys
  10. from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSingleTest
  11. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  12. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  13. class TestAutomation(EditorTestSuite):
  14. class Time_EditorLevelLoading_10KEntityCpuPerfTest(EditorSingleTest):
  15. extra_cmdline_args = ['-rhi=dx12']
  16. use_null_renderer = False # needs renderer to validate test
  17. from .tests import EditorLevelLoading_10KEntityCpuPerfTest as test_module
  18. class Time_EditorLevelLoading_10kVegInstancesTest(EditorSingleTest):
  19. extra_cmdline_args = ['-rhi=dx12']
  20. use_null_renderer = False # needs renderer to validate test
  21. from .tests import EditorLevelLoading_10kVegInstancesTest as test_module