From b482a1a6a10dc093a5d65b88ede924b6c7a4ae25 Mon Sep 17 00:00:00 2001 From: sweeneys Date: Wed, 10 Nov 2021 21:56:56 -0800 Subject: [PATCH] Disable failing smoke tests on Linux Signed-off-by: sweeneys --- .../smoke/test_CLITool_SerializeContextTools_Works.py | 2 +- .../PythonTests/smoke/test_Editor_NewExistingLevels_Works.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py index fb37200a92..4d883745c9 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_CLITool_SerializeContextTools_Works.py @@ -16,7 +16,7 @@ import subprocess import ly_test_tools -@pytest.mark.skipif(not ly_test_tools.WINDOWS, reason="SerializeContextTools only available on Windows") +@pytest.mark.skipif(not ly_test_tools.WINDOWS, reason="Only suceeds on windows https://github.com/o3de/o3de/issues/5539") @pytest.mark.SUITE_smoke class TestCLIToolSerializeContextToolsWorks(object): def test_CLITool_SerializeContextTools_Works(self, build_directory): diff --git a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py index 6f654b9107..b437a21618 100644 --- a/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py +++ b/AutomatedTesting/Gem/PythonTests/smoke/test_Editor_NewExistingLevels_Works.py @@ -15,6 +15,7 @@ import ly_test_tools.environment.file_system as file_system @pytest.mark.SUITE_smoke +@pytest.mark.skipif(not ly_test_tools.WINDOWS, reason="Only suceeds on windows https://github.com/o3de/o3de/issues/5539") @pytest.mark.parametrize("launcher_platform", ["windows_editor"]) @pytest.mark.parametrize("project", ["AutomatedTesting"]) @pytest.mark.parametrize("level", ["temp_level"])