Skip to content

Commit

Permalink
Satellite version validation skip for nightly (#16754)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyejare authored Oct 24, 2024
1 parent 18390d6 commit 6d81c3a
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 @@ -109,7 +109,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 6d81c3a

Please sign in to comment.