diff --git a/AutomatedTesting/Gem/Code/tool_dependencies.cmake b/AutomatedTesting/Gem/Code/tool_dependencies.cmake index a7804cd660..8c5da63f42 100644 --- a/AutomatedTesting/Gem/Code/tool_dependencies.cmake +++ b/AutomatedTesting/Gem/Code/tool_dependencies.cmake @@ -69,6 +69,4 @@ set(GEM_DEPENDENCIES Gem::AtomFont Gem::AtomToolsFramework.Editor Gem::Blast.Editor - Gem::DccScriptingInterface.Editor - Gem::QtForPython.Editor ) diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt b/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt index 3510048109..7a1f59105e 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/CMakeLists.txt @@ -25,7 +25,7 @@ if(PAL_TRAIT_BUILD_HOST_TOOLS AND PAL_TRAIT_BUILD_TESTS_SUPPORTED AND AutomatedT TIMEOUT 1200 RUNTIME_DEPENDENCIES AssetProcessor - AtomTest.Assets + AutomatedTesting.Assets Editor ) endif() diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AllLevels_OpenClose.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AllLevels_OpenClose.py index 2b7fcd6cc6..100fd2311b 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AllLevels_OpenClose.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/atom_hydra_scripts/hydra_AllLevels_OpenClose.py @@ -23,7 +23,7 @@ from automatedtesting_shared.editor_test_helper import EditorTestHelper LEVELS = os.listdir(os.path.join(azlmbr.paths.devroot, "AutomatedTesting", "Levels", "AtomLevels")) -class TestAllLevelsOpenClose(EditorTestHelper): +class HydraAtomLevels(EditorTestHelper): """Tests that all expected Atom levels can be opened and load successfully.""" def __init__(self): EditorTestHelper.__init__(self, log_prefix="Atom_TestAllLevelsOpenClose", args=["level"]) @@ -101,5 +101,5 @@ class TestAllLevelsOpenClose(EditorTestHelper): general.log(f"The following levels failed to open: {failed_to_open}") -test = TestAllLevelsOpenClose() +test = HydraAtomLevels() test.run() diff --git a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py index 6a9f86d151..7f33d06623 100644 --- a/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py +++ b/AutomatedTesting/Gem/PythonTests/atom_renderer/test_Atom_MainSuite.py @@ -48,22 +48,7 @@ class TestAtomLevels(object): request.addfinalizer(teardown) - @pytest.mark.test_case_id( - "C34428159", - "C34428160", - "C34428161", - "C34428162", - "C34428163", - "C34428165", - "C34428166", - "C34428167", - "C34428158", - "C34428172", - "C34428173", - "C34428174", - "C34428175", - ) - + @pytest.mark.test_case_id("C34428159") # Level: ActorTest_100Actors def test_AllLevels_OpenClose(self, request, editor, level, workspace, project, launcher_platform): cfg_args = [level]