Skip to content

Commit

Permalink
[6.15.z] Satellite version validation skip for nightly (#16754) (#16759)
Browse files Browse the repository at this point in the history
Satellite version validation skip for nightly (#16754)
  • Loading branch information
jyejare authored Oct 24, 2024
1 parent 0d7acb0 commit c22ca4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/foreman/installer/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1316,7 +1316,8 @@ def extract_help(filter='params'):

def common_sat_install_assertions(satellite):
sat_version = 'stream' if satellite.is_stream else satellite.version
assert settings.server.version.release == sat_version
if settings.server.version.source != 'nightly':
assert settings.server.version.release == sat_version

# no errors/failures in journald
result = satellite.execute(
Expand Down

0 comments on commit c22ca4e

Please sign in to comment.