From 24d5a4ea4b4ffd2b70f3aebb0db98d369dd8b382 Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Tue, 25 Jun 2024 02:48:14 -0700 Subject: [PATCH] Skip flawed test --- tests/pytests/integration/daemons/test_memory_leak.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/pytests/integration/daemons/test_memory_leak.py b/tests/pytests/integration/daemons/test_memory_leak.py index d61bb85b736..44111647a04 100644 --- a/tests/pytests/integration/daemons/test_memory_leak.py +++ b/tests/pytests/integration/daemons/test_memory_leak.py @@ -37,6 +37,9 @@ def file_add_delete_sls(tmp_path, salt_master): yield sls_name +# This test is fundimentally flawed. Needs to be re-factored to test the memory +# consuption of the minoin process not system wide memory. +@pytest.mark.skip(reason="Flawed test") @pytest.mark.skip_on_fips_enabled_platform @pytest.mark.skip_on_windows(reason="Windows is a spawning platform, won't work") @pytest.mark.skip_on_darwin(reason="MacOS is a spawning platform, won't work")