summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Falcon <TheRealFalcon@users.noreply.github.com>2020-10-15 15:48:38 -0500
committerGitHub <noreply@github.com>2020-10-15 16:48:38 -0400
commit6bd2cda1d3812750027590fe02a5b9415c8f8c9e (patch)
tree10eb4de4f015c55fcc50d189059a8b9a87b0dddc
parentd76d6e6749315634efe0494501270740e8fef206 (diff)
downloadcloud-init-git-6bd2cda1d3812750027590fe02a5b9415c8f8c9e.tar.gz
Add Azure support to integration test framework (#604)
-rw-r--r--tests/integration_tests/integration_settings.py1
-rw-r--r--tests/integration_tests/platforms.py2
2 files changed, 2 insertions, 1 deletions
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
}