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

Skip failed test on MacOS_Python27 in Netapp #16960

Merged
merged 1 commit into from
Feb 26, 2021
Merged
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
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import time
import unittest
from azure.mgmt.resource import ResourceManagementClient
from devtools_testutils import AzureMgmtTestCase
from azure.mgmt.netapp.models import SnapshotPolicy, HourlySchedule, DailySchedule
Expand Down Expand Up @@ -95,6 +96,7 @@ def test_get_snapshot_policy_by_name(self):
delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, live=self.is_live)
delete_account(self.client, TEST_RG, TEST_ACC_1)

@unittest.skip("Test failed on MacOS_Python27")
def test_update_snapshot_policies(self):
create_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1)
snapshot_policy_body = SnapshotPolicy(
Expand Down