Skip to content

Commit

Permalink
Add clone el8 to el9
Browse files Browse the repository at this point in the history
  • Loading branch information
lpramuk committed Apr 22, 2024
1 parent 625017b commit c6650fa
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 c6650fa

Please sign in to comment.