Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.14.z] [cherry-pick] Skip assertion for test_satellite_installation if SAT-21086 is open #15365

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/foreman/installer/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,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
Loading