From 6bd2cda1d3812750027590fe02a5b9415c8f8c9e Mon Sep 17 00:00:00 2001 From: James Falcon Date: Thu, 15 Oct 2020 15:48:38 -0500 Subject: Add Azure support to integration test framework (#604) --- tests/integration_tests/integration_settings.py | 1 + tests/integration_tests/platforms.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/integration_tests') diff --git a/tests/integration_tests/integration_settings.py b/tests/integration_tests/integration_settings.py index ddd587db..a0609f7e 100644 --- a/tests/integration_tests/integration_settings.py +++ b/tests/integration_tests/integration_settings.py @@ -10,6 +10,7 @@ KEEP_INSTANCE = False # One of: # lxd_container +# azure # ec2 # gce # oci diff --git a/tests/integration_tests/platforms.py b/tests/integration_tests/platforms.py index ba1d4e9f..3755eb1e 100644 --- a/tests/integration_tests/platforms.py +++ b/tests/integration_tests/platforms.py @@ -217,7 +217,7 @@ class LxdContainerClient(IntegrationClient): client_name_to_class = { 'ec2': Ec2Client, 'gce': GceClient, - # 'azure': AzureClient, # Not supported yet + 'azure': AzureClient, 'oci': OciClient, 'lxd_container': LxdContainerClient } -- cgit v1.2.3