-
Notifications
You must be signed in to change notification settings - Fork 116
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
Remove fake manifest from Robottelo #17808
base: master
Are you sure you want to change the base?
Remove fake manifest from Robottelo #17808
Conversation
58443c3
to
a37bb0e
Compare
trigger: test-robottelo |
a37bb0e
to
b73573c
Compare
This PR removes references to and uses of the fake manifest from all Pytest fixtures, helper modules, utilities, and tests. Doing so will enable Satellite QE to remove associated workflows and pipelines from our AAP and Jenkins environments.
b73573c
to
6828573
Compare
fb84196
to
80f0191
Compare
with ( | ||
function_sca_manifest as manifest, | ||
open(temporary_local_manifest_path, 'wb') as file_handler, | ||
): | ||
file_handler.write(manifest.content) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
non-blocking alternative
with ( | |
function_sca_manifest as manifest, | |
open(temporary_local_manifest_path, 'wb') as file_handler, | |
): | |
file_handler.write(manifest.content) | |
with function_sca_manifest as manifest: | |
Path(temporary_local_manifest_path).write_bytes(manifest.content) |
Problem Statement
Satellite QE would like to remove workflows and pipelines associated with the fake manifest from our AAP and Jenkins environments.
Solution
Remove references to and uses of the fake manifest from all Pytest fixtures, helper modules, utilities, and tests.