From 770def921331000b5aaacbe8b821ad6311f27ca9 Mon Sep 17 00:00:00 2001 From: David Murphy Date: Wed, 28 Aug 2024 11:34:13 -0600 Subject: [PATCH] Ensure salt_master is left running after test stopped it --- tests/pytests/pkg/integration/test_salt_user.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/pytests/pkg/integration/test_salt_user.py b/tests/pytests/pkg/integration/test_salt_user.py index 70a08742970..bb79e9f5293 100644 --- a/tests/pytests/pkg/integration/test_salt_user.py +++ b/tests/pytests/pkg/integration/test_salt_user.py @@ -420,3 +420,7 @@ def test_paths_log_rotation( bkup_count += 1 assert ret.returncode == 0 + + # ensure leave salt_master running + salt_master.start() + assert salt_master.is_running() is True