2020-12-03 11:49:41 +00:00
|
|
|
From f70a9a0a98c0af5a7b2aea9a8e4b40bbe1668038 Mon Sep 17 00:00:00 2001
|
2020-02-14 14:25:00 +00:00
|
|
|
From: Eduardo Otubo <otubo@redhat.com>
|
2020-12-03 11:49:41 +00:00
|
|
|
Date: Thu, 3 Dec 2020 12:31:42 +0100
|
|
|
|
Subject: [PATCH 1/3] Disable LXD tests
|
2020-02-14 14:25:00 +00:00
|
|
|
|
|
|
|
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
|
2020-12-03 11:49:41 +00:00
|
|
|
index e506baa0..e7efcba5 100644
|
2020-02-14 14:25:00 +00:00
|
|
|
--- a/tests/cloud_tests/platforms/__init__.py
|
|
|
|
+++ b/tests/cloud_tests/platforms/__init__.py
|
2020-12-03 11:49:41 +00:00
|
|
|
@@ -3,7 +3,6 @@
|
2020-02-14 14:25:00 +00:00
|
|
|
"""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
|
2020-12-03 11:49:41 +00:00
|
|
|
from ..util import emit_dots_on_travis
|
|
|
|
@@ -11,7 +10,6 @@ from ..util import emit_dots_on_travis
|
2020-02-14 14:25:00 +00:00
|
|
|
PLATFORMS = {
|
|
|
|
'ec2': ec2.EC2Platform,
|
|
|
|
'nocloud-kvm': nocloudkvm.NoCloudKVMPlatform,
|
|
|
|
- 'lxd': lxd.LXDPlatform,
|
|
|
|
'azurecloud': azurecloud.AzureCloudPlatform,
|
|
|
|
}
|
|
|
|
|
|
|
|
--
|
2020-12-03 11:49:41 +00:00
|
|
|
2.27.0
|
2020-02-14 14:25:00 +00:00
|
|
|
|