-
Notifications
You must be signed in to change notification settings - Fork 114
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
Updates for CV component eval #15043
Conversation
trigger: test-robottelo |
PRT Result
|
trigger: test-robottelo |
PRT Result
|
@pytest.mark.parametrize('add_by_name', [True, False], ids=['name', 'id']) | ||
def test_positive_add_custom_repo_by( | ||
self, module_org, module_product, module_target_sat, add_by_name | ||
): | ||
"""Associate custom content to a content view with name |
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.
Probably want to update the docstring here, since I think reading this test can be a bit confusing now without a small amount of clarification. Really like the parametrization though, a nice way to clean up so much of the cruft in this test file :)
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.
Yeah, I will update it.
* Few updates for CV component eval * Address comments (cherry picked from commit 47b9906)
* Few updates for CV component eval * Address comments (cherry picked from commit 47b9906)
Updates for CV component eval (#15043) * Few updates for CV component eval * Address comments (cherry picked from commit 47b9906) Co-authored-by: vsedmik <[email protected]>
Updates for CV component eval (#15043) * Few updates for CV component eval * Address comments (cherry picked from commit 47b9906) Co-authored-by: vsedmik <[email protected]>
* Few updates for CV component eval * Address comments
Updates for CV component eval (#15043) * Few updates for CV component eval * Address comments
* Few updates for CV component eval * Address comments
Problem Statement
CV component eval proposes several changes to be done for content view tests.
Solution
This PR addresses some of them, mostly merges and some minor modifications. In particular:
test_positive_remove_cv_version_from_env
is merged withtest_positive_remove_cv_version_from_multi_env
test_positive_promote_with_docker_repo_composite
is merged withtest_positive_promote_multiple_with_docker_repo_composite
test_positive_add_custom_repo_by_name
is parametrized for adding repo byid
and incorrect BZ reference is removedtest_negative_update_with_name
another test case where incorrect BZ reference is removedtest_positive_arbitrary_file_sync_over_capsule
is removed since it is already implemented in test_positive_sync_file_repotest_positive_restart_dynflow_publish
andtest_positive_restart_dynflow_promote
are removed since they represent obsolete workflows nowadaysPRT test Cases example
trigger: test-robottelo
pytest: tests/foreman/cli/test_contentview.py -k 'test_positive_add_custom_repo_by or test_positive_remove_cv_version_from_multi_env and not capsule'