diff options
author | ahosmanmsft <ahosman@microsoft.com> | 2019-11-26 11:36:00 -0700 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2019-11-26 11:36:00 -0700 |
commit | aa3e4961ceae5a5c5b5cf13221b5f6721991fe75 (patch) | |
tree | 43bcc20bbdeeb44e02911dfb55759377f8aa1a5c /tests/cloud_tests/platforms/__init__.py | |
parent | b6055c40189afba323986059434b8d8adc85bba3 (diff) | |
download | vyos-cloud-init-aa3e4961ceae5a5c5b5cf13221b5f6721991fe75.tar.gz vyos-cloud-init-aa3e4961ceae5a5c5b5cf13221b5f6721991fe75.zip |
cloud_tests: add azure platform support to integration tests
Added Azure to cloud tests supporting upstream integration testing.
Implement the inherited platform classes, Azure configurations
to release/platform, and docs on how to run Azure CI.
Diffstat (limited to 'tests/cloud_tests/platforms/__init__.py')
-rw-r--r-- | tests/cloud_tests/platforms/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/cloud_tests/platforms/__init__.py b/tests/cloud_tests/platforms/__init__.py index a01e51ac..6a410b84 100644 --- a/tests/cloud_tests/platforms/__init__.py +++ b/tests/cloud_tests/platforms/__init__.py @@ -5,11 +5,13 @@ from .ec2 import platform as ec2 from .lxd import platform as lxd from .nocloudkvm import platform as nocloudkvm +from .azurecloud import platform as azurecloud PLATFORMS = { 'ec2': ec2.EC2Platform, 'nocloud-kvm': nocloudkvm.NoCloudKVMPlatform, 'lxd': lxd.LXDPlatform, + 'azurecloud': azurecloud.AzureCloudPlatform, } |