Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tests/foreman/maintain/test_upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,14 @@ def test_negative_pre_update_tuning_profile_check(request, custom_host):
:expectedresults: Pre-update check fails.
"""
profile = request.node.callspec.id
sat_version = ".".join(settings.server.version.release.split('.')[0:2])
# Register to CDN for RHEL repos, download and enable ohsnap repos,
# and enable the satellite module and install it on the host
custom_host.register_to_cdn()
custom_host.download_repofile(product='satellite', release=sat_version)
custom_host.download_repofile(
product='satellite',
release=settings.server.version.release,
snap=settings.server.version.snap,
)
custom_host.install_satellite_or_capsule_package()
# Install with development tuning profile to get around installer checks
custom_host.execute(
Expand Down
Loading