You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.1 KiB
Python
32 lines
1.1 KiB
Python
"""
|
|
Copyright (c) Contributors to the Open 3D Engine Project.
|
|
For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
"""
|
|
|
|
# This suite consists of all test cases that are passing and have been verified.
|
|
|
|
import pytest
|
|
import os
|
|
import sys
|
|
|
|
from ly_test_tools.o3de.editor_test import EditorTestSuite, EditorSingleTest
|
|
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
|
|
class TestAutomation(EditorTestSuite):
|
|
|
|
class Time_EditorLevelLoading_10KEntityCpuPerfTest(EditorSingleTest):
|
|
extra_cmdline_args = ['-rhi=dx12']
|
|
use_null_renderer = False # needs renderer to validate test
|
|
|
|
from .tests import EditorLevelLoading_10KEntityCpuPerfTest as test_module
|
|
|
|
class Time_EditorLevelLoading_10kVegInstancesTest(EditorSingleTest):
|
|
extra_cmdline_args = ['-rhi=dx12']
|
|
use_null_renderer = False # needs renderer to validate test
|
|
|
|
from .tests import EditorLevelLoading_10kVegInstancesTest as test_module
|