Skip to content

Commit

Permalink
Skip assertion for test_satellite_installation if SAT-21086 is open (S…
Browse files Browse the repository at this point in the history
  • Loading branch information
jameerpathan111 committed Jun 6, 2024
1 parent d51de05 commit 361b27d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/foreman/installer/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ def common_sat_install_assertions(satellite):
assert len(result.stdout) == 0
# no errors in /var/log/foreman/production.log
result = satellite.execute(r'grep --context=100 -E "\[E\|" /var/log/foreman/production.log')
if not is_open('BZ:2247484'):
if not is_open('SAT-21086'):
assert len(result.stdout) == 0
# no errors/failures in /var/log/foreman-installer/satellite.log
result = satellite.execute(
Expand Down

0 comments on commit 361b27d

Please sign in to comment.