From fbf09f27c72e0713b4dd0f3fd970aba6e629a92c Mon Sep 17 00:00:00 2001 From: lsemp3d <58790905+lsemp3d@users.noreply.github.com> Date: Thu, 30 Sep 2021 17:15:06 -0700 Subject: [PATCH] Marked test_VariableManager_UnpinVariableType_Works as xfail, the test needs to be reworked Signed-off-by: lsemp3d <58790905+lsemp3d@users.noreply.github.com> --- .../Gem/PythonTests/scripting/TestSuite_Periodic.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py index 0862e03a79..b2001e6825 100755 --- a/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py +++ b/AutomatedTesting/Gem/PythonTests/scripting/TestSuite_Periodic.py @@ -122,6 +122,7 @@ class TestAutomation(TestAutomationBase): from . import Debugger_HappyPath_TargetMultipleEntities as test_module self._run_test(request, workspace, editor, test_module) + @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") def test_EditMenu_Default_UndoRedo(self, request, workspace, editor, launcher_platform, project): from . import EditMenu_Default_UndoRedo as test_module self._run_test(request, workspace, editor, test_module) @@ -181,6 +182,7 @@ class TestAutomation(TestAutomationBase): from . import NodePalette_SearchText_Deletion as test_module self._run_test(request, workspace, editor, test_module) + @pytest.mark.xfail(reason="Test fails to find expected lines, it needs to be fixed.") def test_VariableManager_UnpinVariableType_Works(self, request, workspace, editor, launcher_platform): from . import VariableManager_UnpinVariableType_Works as test_module self._run_test(request, workspace, editor, test_module)