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-mgmt-monitor] skip test to unblock ci #19390

Merged
merged 2 commits into from
Jun 22, 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
Expand Up @@ -6,6 +6,7 @@
# license information.
#--------------------------------------------------------------------------
import time
import pytest
import unittest

import azure.mgmt.monitor.aio
Expand Down Expand Up @@ -281,6 +282,7 @@ def create_network_interface(self, group_name, location, nic_name, subnet):
result = self.vm_client.virtual_machines.create_or_update(group_name, vm_name, BODY)
return result.result()

@pytest.mark.skip("https://github.com/Azure/azure-sdk-for-python/issues/19389")
@RandomNameResourceGroupPreparer(location=AZURE_LOCATION)
def test_monitor_diagnostic_settings(self, resource_group):
SUBSCRIPTION_ID = self.settings.SUBSCRIPTION_ID
Expand Down