TestSuite_Periodic_Vulkan.py 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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. # there is currently a huge discrepancy loading this level with vulkan compared to dx12 which requires the 10 min timeout
  16. # this should be removed once that issue has been sorted out
  17. timeout = 600
  18. extra_cmdline_args = ['-rhi=vulkan']
  19. use_null_renderer = False # needs renderer to validate test
  20. from .tests import EditorLevelLoading_10KEntityCpuPerfTest as test_module
  21. class Time_EditorLevelLoading_10kVegInstancesTest(EditorSingleTest):
  22. extra_cmdline_args = ['-rhi=vulkan']
  23. use_null_renderer = False # needs renderer to validate test
  24. from .tests import EditorLevelLoading_10kVegInstancesTest as test_module