fa163f49b9
* move shader asset builder test into test_Atom_MainSuite_Optimized.py, update CMakeLists.txt, and move all imports inside the test class for hydra_ShaderAssetBuilder_RecompilesShaderAsChainOfDependenciesChanges.py Signed-off-by: jromnoa <jromnoa@amazon.com> * re-organize the Atom automated test structure to match the new parallel + batched test structures Signed-off-by: jromnoa <jromnoa@amazon.com> * fix CMakeLists.txt registrations for test files Signed-off-by: jromnoa <jromnoa@amazon.com>
47 lines
2.2 KiB
Python
47 lines
2.2 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
|
|
"""
|
|
import pytest
|
|
|
|
from ly_test_tools.o3de.editor_test import EditorSharedTest, EditorTestSuite
|
|
|
|
|
|
@pytest.mark.xfail(reason="Optimized tests are experimental, we will enable xfail and monitor them temporarily.")
|
|
@pytest.mark.parametrize("project", ["AutomatedTesting"])
|
|
@pytest.mark.parametrize("launcher_platform", ['windows_editor'])
|
|
class TestAutomation(EditorTestSuite):
|
|
|
|
class AtomEditorComponents_DecalAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_DecalAdded as test_module
|
|
|
|
class AtomEditorComponents_DepthOfFieldAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_DepthOfFieldAdded as test_module
|
|
|
|
class AtomEditorComponents_DirectionalLightAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_DirectionalLightAdded as test_module
|
|
|
|
class AtomEditorComponents_ExposureControlAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_ExposureControlAdded as test_module
|
|
|
|
class AtomEditorComponents_GlobalSkylightIBLAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_GlobalSkylightIBLAdded as test_module
|
|
|
|
class AtomEditorComponents_PhysicalSkyAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_PhysicalSkyAdded as test_module
|
|
|
|
class AtomEditorComponents_PostFXRadiusWeightModifierAdded(EditorSharedTest):
|
|
from Atom.tests import (
|
|
hydra_AtomEditorComponents_PostFXRadiusWeightModifierAdded as test_module)
|
|
|
|
class AtomEditorComponents_LightAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_LightAdded as test_module
|
|
|
|
class AtomEditorComponents_DisplayMapperAdded(EditorSharedTest):
|
|
from Atom.tests import hydra_AtomEditorComponents_DisplayMapperAdded as test_module
|
|
|
|
class ShaderAssetBuilder_RecompilesShaderAsChainOfDependenciesChanges(EditorSharedTest):
|
|
from Atom.tests import hydra_ShaderAssetBuilder_RecompilesShaderAsChainOfDependenciesChanges as test_module
|