-
Notifications
You must be signed in to change notification settings - Fork 182
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
[Hyper-v platform] Enabling more testcases to run on Hyper-V platform #3623
base: main
Are you sure you want to change the base?
Conversation
@@ -33,7 +33,7 @@ class Dhcp(TestSuite): | |||
|
|||
""", | |||
priority=1, | |||
requirement=simple_requirement(supported_platform_type=[AZURE, READY]), | |||
requirement=simple_requirement(supported_platform_type=[AZURE, READY, HYPERV]), |
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.
I don't think this case is needed on Hyper-V platform
microsoft/testsuites/core/storage.py
Outdated
@@ -85,7 +85,7 @@ class Storage(TestSuite): | |||
""", | |||
priority=2, | |||
requirement=simple_requirement( | |||
supported_platform_type=[AZURE], | |||
supported_platform_type=[AZURE, HYPERV], |
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.
this case depends on waagent, it is not a hyperv case
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.
Fixed
microsoft/testsuites/core/storage.py
Outdated
@@ -206,7 +206,7 @@ def verify_resource_disk_mounted(self, node: RemoteNode) -> None: | |||
""", | |||
priority=1, | |||
requirement=simple_requirement( | |||
supported_platform_type=[AZURE], | |||
supported_platform_type=[AZURE, HYPERV], |
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.
this case depends on waagent, it is not a hyperv case
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.
Fixed
@@ -32,7 +32,9 @@ | |||
It is responsible for ensuring the Hyper V drivers are all present, | |||
are included in initrd, and are all the same version. | |||
""", | |||
requirement=simple_requirement(supported_platform_type=["azure", "ready"]), | |||
requirement=simple_requirement( | |||
supported_platform_type=["azure", "ready", "hyperv"] |
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.
Use consts like other cases.
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.
Fixed
This PR will enable more tests to run on Hyper-v platform.