-
Notifications
You must be signed in to change notification settings - Fork 165
[1LP][RFR] Fix tests #9978
[1LP][RFR] Fix tests #9978
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,7 +181,7 @@ def setup_vm(configure_fleecing, appliance, provider): | |
vm = appliance.collections.infra_vms.instantiate( | ||
name=random_vm_name(context="report", max_length=20), | ||
provider=provider, | ||
template_name="env-rhel7-20-percent-full-disk-tpl", | ||
template_name="env-rhel7-20-percent-full-disk-pvala-tpl", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this should come from data yaml than hardcodding. We can include this under template session for provider. I'm marking this optional as just modifying but please raise separate PR for this. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This template won't be used by any other test case unless you want to provision a VM which has less than 20% disk space, which is why I directly used the template name even though it's weird to look at it. But if you insist, we can move it to data yaml. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yup better to take it from yaml... It will help in template maintenance as well. |
||
) | ||
vm.create_on_provider(allow_skip="default", find_in_cfme=True) | ||
vm.smartstate_scan(wait_for_task_result=True) | ||
|
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.
can you please add comment for this?