diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d02692c5717..a7acde80639 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -761,7 +761,7 @@ jobs: - job: TestRpmPackagesAzureLinux displayName: Test Rpm Package - timeoutInMinutes: 120 + timeoutInMinutes: 180 dependsOn: - BuildRpmPackagesAzureLinux - ExtractMetadata @@ -855,7 +855,7 @@ jobs: - job: TestRpmPackage displayName: Test Rpm Package - timeoutInMinutes: 120 + timeoutInMinutes: 180 dependsOn: - BuildRpmPackages - ExtractMetadata @@ -979,7 +979,7 @@ jobs: ArtifactName: $(deb_system)-$(distro)-$(arch) - job: TestDebPackages - timeoutInMinutes: 120 + timeoutInMinutes: 180 displayName: Test Deb Packages dependsOn: - BuildDebPackages diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_agentpool_commands.py b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_agentpool_commands.py index 4bb438cb165..88ef125b817 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_agentpool_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_agentpool_commands.py @@ -3,11 +3,12 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure.cli.testsdk import ScenarioTest, StorageAccountPreparer, ResourceGroupPreparer, record_only +from azure.cli.testsdk import ScenarioTest, StorageAccountPreparer, ResourceGroupPreparer, record_only, live_only class AcrAgentPoolCommandsTests(ScenarioTest): + @live_only() @ResourceGroupPreparer() def test_acr_agentpool(self, resource_group): # Agentpool prerequisites for agentpool testing diff --git a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_connectedregistry_commands.py b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_connectedregistry_commands.py index c0e1bbca8b8..a9375eb0b08 100644 --- a/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_connectedregistry_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acr/tests/latest/test_acr_connectedregistry_commands.py @@ -3,11 +3,12 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- -from azure.cli.testsdk import ScenarioTest, StorageAccountPreparer, ResourceGroupPreparer, record_only +from azure.cli.testsdk import ScenarioTest, StorageAccountPreparer, ResourceGroupPreparer, record_only, live_only class AcrConnectedRegistryCommandsTests(ScenarioTest): + @live_only() @ResourceGroupPreparer() def test_acr_connectedregistry(self, resource_group): # Agentpool prerequisites for connected registry testing diff --git a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py index a7d1822ca4a..a215bab21aa 100644 --- a/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py +++ b/src/azure-cli/azure/cli/command_modules/acs/tests/latest/test_aks_commands.py @@ -539,6 +539,7 @@ def test_aks_api_server_authorized_ip_ranges(self, resource_group, resource_grou # delete self.cmd('aks delete -g {resource_group} -n {name} --yes --no-wait', checks=[self.is_empty()]) + @live_only() @AllowLargeResponse() @AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2') def test_aks_create_and_update_with_http_proxy_config(self, resource_group, resource_group_location): diff --git a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py index 6674f8dc4fc..ed8749ffb50 100644 --- a/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py +++ b/src/azure-cli/azure/cli/command_modules/iot/tests/latest/test_iot_commands.py @@ -7,7 +7,7 @@ from unittest import mock from knack.util import CLIError -from azure.cli.testsdk import ResourceGroupPreparer, ScenarioTest, StorageAccountPreparer +from azure.cli.testsdk import ResourceGroupPreparer, ScenarioTest, StorageAccountPreparer, live_only from azure.cli.testsdk.scenario_tests import AllowLargeResponse from azure.mgmt.iothub.models import RoutingSource from azure.cli.command_modules.iot.shared import IdentityType @@ -840,6 +840,7 @@ def test_hub_file_upload(self, resource_group, resource_group_location, storage_ assert storage_cs_pattern in updated_hub['properties']['storageEndpoints']['$default']['connectionString'] assert updated_hub['properties']['storageEndpoints']['$default']['containerName'] == containerName + @live_only() @AllowLargeResponse() @ResourceGroupPreparer(location='westus2') def test_hub_wait(self, resource_group, resource_group_location): diff --git a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py index 8ff844624db..f7bcd84de10 100644 --- a/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py +++ b/src/azure-cli/azure/cli/command_modules/rdbms/tests/latest/test_rdbms_commands.py @@ -71,12 +71,14 @@ def _get_resource_group(self, **kwargs): class ServerMgmtScenarioTest(ScenarioTest): + @live_only() @AllowLargeResponse() @ResourceGroupPreparer(parameter_name='resource_group_1') @ResourceGroupPreparer(parameter_name='resource_group_2') def test_mariadb_server_mgmt(self, resource_group_1, resource_group_2): self._test_server_mgmt('mariadb', resource_group_1, resource_group_2) + @live_only() @AllowLargeResponse() @ResourceGroupPreparer(parameter_name='resource_group_1') @ResourceGroupPreparer(parameter_name='resource_group_2') @@ -342,6 +344,7 @@ def _test_server_mgmt(self, database_engine, resource_group_1, resource_group_2) class ProxyResourcesMgmtScenarioTest(ScenarioTest): + @live_only() @AllowLargeResponse() @ResourceGroupPreparer() @ServerPreparer(engine_type='mariadb') @@ -354,6 +357,7 @@ def test_mariadb_proxy_resources_mgmt(self, resource_group, server, database_eng self._test_private_link_resource(resource_group, server, database_engine, 'mariadbServer') self._test_private_endpoint_connection(resource_group, server, database_engine) + @live_only() @AllowLargeResponse() @ResourceGroupPreparer() @ServerPreparer(engine_type='mysql')