f3523f3923
This is the first step for rebasing cloud-init to 21.3. All patches are rebased, old patches that are already on the release were deleted. Signed-off-by: Eduardo Otubo <otubo@redhat.com>
34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From f70a9a0a98c0af5a7b2aea9a8e4b40bbe1668038 Mon Sep 17 00:00:00 2001
|
|
From: Eduardo Otubo <otubo@redhat.com>
|
|
Date: Thu, 3 Dec 2020 12:31:42 +0100
|
|
Subject: [PATCH 1/3] Disable LXD tests
|
|
|
|
Signed-off-by: Eduardo Otubo <otubo@redhat.com>
|
|
---
|
|
tests/cloud_tests/platforms/__init__.py | 2 --
|
|
1 file changed, 2 deletions(-)
|
|
|
|
diff --git a/tests/cloud_tests/platforms/__init__.py b/tests/cloud_tests/platforms/__init__.py
|
|
index e506baa0..e7efcba5 100644
|
|
--- a/tests/cloud_tests/platforms/__init__.py
|
|
+++ b/tests/cloud_tests/platforms/__init__.py
|
|
@@ -3,7 +3,6 @@
|
|
"""Main init."""
|
|
|
|
from .ec2 import platform as ec2
|
|
-from .lxd import platform as lxd
|
|
from .nocloudkvm import platform as nocloudkvm
|
|
from .azurecloud import platform as azurecloud
|
|
from ..util import emit_dots_on_travis
|
|
@@ -11,7 +10,6 @@ from ..util import emit_dots_on_travis
|
|
PLATFORMS = {
|
|
'ec2': ec2.EC2Platform,
|
|
'nocloud-kvm': nocloudkvm.NoCloudKVMPlatform,
|
|
- 'lxd': lxd.LXDPlatform,
|
|
'azurecloud': azurecloud.AzureCloudPlatform,
|
|
}
|
|
|
|
--
|
|
2.27.0
|
|
|