Skip to content
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

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

SRIKKANTH
Copy link
Collaborator

@SRIKKANTH SRIKKANTH commented Feb 2, 2025

This PR will enable more tests to run on Hyper-v platform.

@@ -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]),
Copy link
Collaborator

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

@@ -85,7 +85,7 @@ class Storage(TestSuite):
""",
priority=2,
requirement=simple_requirement(
supported_platform_type=[AZURE],
supported_platform_type=[AZURE, HYPERV],
Copy link
Collaborator

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

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

@@ -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],
Copy link
Collaborator

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

Copy link
Collaborator Author

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"]
Copy link
Member

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.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants