33 lines
931 B
Diff
33 lines
931 B
Diff
From 1a8143951839afd5b0f80e9d00af582daa429fdc Mon Sep 17 00:00:00 2001
|
|
From: Eduardo Otubo <otubo@redhat.com>
|
|
Date: Fri, 21 Feb 2020 10:52:26 +0100
|
|
Subject: [PATCH] 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 6a410b84..2076d1c7 100644
|
|
--- a/tests/cloud_tests/platforms/__init__.py
|
|
+++ b/tests/cloud_tests/platforms/__init__.py
|
|
@@ -3,14 +3,12 @@
|
|
"""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
|
|
|
|
PLATFORMS = {
|
|
'ec2': ec2.EC2Platform,
|
|
'nocloud-kvm': nocloudkvm.NoCloudKVMPlatform,
|
|
- 'lxd': lxd.LXDPlatform,
|
|
'azurecloud': azurecloud.AzureCloudPlatform,
|
|
}
|
|
|
|
--
|
|
2.17.2
|
|
|