Skip to content

Commit

Permalink
Satellite version validation skip for nightly (SatelliteQE#16754)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare committed Oct 24, 2024
1 parent 0d7acb0 commit 59b9f9d
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 59b9f9d

Please sign in to comment.