Skip to content

Commit

Permalink
Satellite version validation skip for nightly (#16754)
Browse files Browse the repository at this point in the history
(cherry picked from commit 6d81c3a)
  • Loading branch information
jyejare authored and web-flow committed Oct 24, 2024
1 parent 0d7acb0 commit da1044d
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 da1044d

Please sign in to comment.