From 0158a5906b158f3ebb0a7cdb78f504847c650c1b Mon Sep 17 00:00:00 2001 From: Lukas Pramuk Date: Thu, 26 Oct 2023 11:21:38 +0200 Subject: [PATCH] Remove test_positive_backup_restore_snapshot stub (#12974) (cherry picked from commit 8b0eca51c1384eb75b514fedd15bdc68bf3dabe5) --- tests/foreman/maintain/test_backup_restore.py | 27 ------------------- 1 file changed, 27 deletions(-) diff --git a/tests/foreman/maintain/test_backup_restore.py b/tests/foreman/maintain/test_backup_restore.py index 473f768fa74..6f6817730b1 100644 --- a/tests/foreman/maintain/test_backup_restore.py +++ b/tests/foreman/maintain/test_backup_restore.py @@ -675,30 +675,3 @@ def test_positive_backup_restore_incremental( query={'search': f'name="{secondary_repo.name}"'} )[0] assert repo.id == secondary_repo.id - - -@pytest.mark.stubbed -def test_positive_backup_restore_snapshot(): - """Take the snapshot backup of a server, restore it, check for content - - :id: dcf3b815-97ed-4c2e-9f2d-5eedd8591c98 - - :setup: - 1. satellite installed on an LVM-based storage with sufficient free extents - - :steps: - 1. create the snapshot backup (with/without pulp) - 2. check that appropriate files are created - 3. restore the backup (installer --reset-data is run in this step) - 4. check system health - 5. check the content was restored - - :expectedresults: - 1. backup succeeds - 2. expected files are present in the backup - 3. restore succeeds - 4. system health check succeeds - 5. content is present after restore - - :CaseAutomation: NotAutomated - """