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

Azure file share: change cases priority into 5 #3316

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion microsoft/testsuites/core/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,13 +559,17 @@ def after_case(self, log: Logger, **kwargs: Any) -> None:
2. Create an Azure File Share
3. Mount the VM to Azure File Share
4. Verify mount is successful

Downgrading priority from 1 to 5. The file share relies on the
storage account key, which we cannot use currently.
Will change it back once file share works with MSI.
""",
timeout=TIME_OUT,
requirement=simple_requirement(
supported_platform_type=[AZURE], unsupported_os=[BSD, Windows]
),
use_new_environment=True,
priority=1,
priority=5,
)
def verify_cifs_basic(self, node: Node, environment: Environment) -> None:
if not node.tools[KernelConfig].is_enabled("CONFIG_CIFS"):
Expand Down
6 changes: 5 additions & 1 deletion microsoft/testsuites/xfstests/xfstesting.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ def verify_btrfs_nvme_datadisk(self, log_path: Path, result: TestResult) -> None
description="""
This test case will run cifs xfstests testing against
azure file share.

Downgrading priority from 3 to 5. The file share relies on the
storage account key, which we cannot use currently.
Will change it back once file share works with MSI.
""",
requirement=simple_requirement(
min_core_count=16,
Expand All @@ -423,7 +427,7 @@ def verify_btrfs_nvme_datadisk(self, log_path: Path, result: TestResult) -> None
),
timeout=TIME_OUT,
use_new_environment=True,
priority=3,
priority=5,
)
def verify_azure_file_share(
self, log: Logger, log_path: Path, result: TestResult
Expand Down
Loading