-
Notifications
You must be signed in to change notification settings - Fork 115
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.13.z] Mark UI tests as end-to-end for Rocket Team Components #15337
[6.13.z] Mark UI tests as end-to-end for Rocket Team Components #15337
Conversation
trigger: test-robottelo |
400b50c
to
9d6771e
Compare
trigger: test-robottelo |
9d6771e
to
8a97680
Compare
8a97680
to
ec69e00
Compare
PRT Result
|
@@ -49,7 +49,7 @@ def rhev_data(): | |||
|
|||
|
|||
@pytest.mark.tier2 | |||
def test_positive_end_to_end(session, rhev_data, module_org, module_location): | |||
def test_positive_end_to_end(session, rhev_data, module_target_sat): | |||
"""Perform end to end testing for compute resource RHEV. |
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.
@shweta83 the test is using entities
instead of module_target_sat.api
. Also, it'd be better if we use module_target_sat.ui_session()
here. Same suggestion for other tests in the module. It's probably the same in master branch, so I'll leave it to you to decide if it should be done in separate PR.
@@ -18,6 +18,7 @@ | |||
from robottelo.utils.datafactory import gen_string | |||
|
|||
|
|||
@pytest.mark.e2e | |||
@pytest.mark.tier2 | |||
def test_positive_end_to_end(session, module_org, module_location, target_sat): |
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.
def test_positive_end_to_end(session, module_org, module_location, target_sat): | |
def test_positive_end_to_end(session, module_org, module_location, module_target_sat): |
Problem Statement
Manual cherrypick of #14702
Solution
Related Issues