Skip to content

Commit

Permalink
Add coverage for clone from el8 to el9 (#14856)
Browse files Browse the repository at this point in the history
Add clone el8 to el9
  • Loading branch information
lpramuk authored Apr 23, 2024
1 parent bcb33fc commit 2c5e9a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/foreman/destructive/test_clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,18 @@

from robottelo import constants
from robottelo.config import settings
from robottelo.hosts import Satellite
from robottelo.hosts import Satellite, get_sat_rhel_version

SSH_PASS = settings.server.ssh_password
pytestmark = pytest.mark.destructive


@pytest.mark.e2e
@pytest.mark.parametrize(
"sat_ready_rhel",
[8, 9] if get_sat_rhel_version().major < 9 else [9],
indirect=True,
)
@pytest.mark.parametrize('backup_type', ['online', 'offline'])
@pytest.mark.parametrize('skip_pulp', [False, True], ids=['include_pulp', 'skip_pulp'])
def test_positive_clone_backup(
Expand Down

0 comments on commit 2c5e9a5

Please sign in to comment.