summaryrefslogtreecommitdiff
path: root/tests/__init__.py
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-01-24 16:18:00 -0500
committerCole Robinson <crobinso@redhat.com>2020-01-24 17:04:29 -0500
commitee9f93074bf74bd2e4c5177d750e7c438c7790cf (patch)
treea3d4ba5ec704ff939b9dd72f58e36961aded1fb9 /tests/__init__.py
parentcdbc3f56e61543ca77c1d31463d1d9a1bade900a (diff)
downloadvirt-manager-ee9f93074bf74bd2e4c5177d750e7c438c7790cf.tar.gz
Remove virt-convert
This was raised here: https://www.redhat.com/archives/virt-tools-list/2019-June/msg00117.html Quoting from that: """ virt-convert takes an ovf/ova or vmx file and spits out libvirt XML. It started as a code drop a long time ago that could translate back and forth between vmx, ovf, and virt-image, a long dead appliance format. In 2014 I converted it to do vmx -> libvirt and ovf -> libvirt which was a CLI breaking change, but I never heard a peep of a complaint. It doesn't seem to do a particularly thorough job at its intended goal, I've seen 2-3 bug reports in the past 5 years and generally it doesn't seem to have any users. Let's kill it. If anyone has the desire to keep it alive it could live as a separate project that's a wrapper around virt-install but there's no compelling reason to keep it in virt-manager.git IMO """ Nothing has changed since then, so here is the removal. Signed-off-by: Cole Robinson <crobinso@redhat.com>
Diffstat (limited to 'tests/__init__.py')
-rw-r--r--tests/__init__.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/__init__.py b/tests/__init__.py
index 16396968..3e9d25ff 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -22,7 +22,6 @@ from tests import utils
virtinstall = None
virtclone = None
-virtconvert = None
virtxml = None
@@ -55,10 +54,8 @@ def setup_cli_imports():
global virtinstall
global virtclone
- global virtconvert
global virtxml
atexit.register(_cleanup_imports_cb)
virtinstall = _import("virtinstall", "virt-install")
virtclone = _import("virtclone", "virt-clone")
- virtconvert = _import("virtconvert", "virt-convert")
virtxml = _import("virtxml", "virt-xml")