mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
df5c688c11
Rather than custom --distro option. And fix the URL list
71 lines
2.1 KiB
Python
71 lines
2.1 KiB
Python
# Copyright (C) 2013, 2014 Red Hat, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
# MA 02110-1301 USA.
|
|
|
|
import atexit
|
|
import imp
|
|
import logging
|
|
import os
|
|
|
|
# Need to do this before any tests or virtinst import
|
|
os.environ["VIRTINST_TEST_SUITE"] = "1"
|
|
os.environ["VIRTINST_TEST_URL_DIR"] = os.path.abspath(
|
|
"tests/cli-test-xml/fakefedoratree/")
|
|
|
|
# pylint: disable=wrong-import-position
|
|
from virtcli import cliconfig
|
|
# This sets all the cli bits back to their defaults
|
|
reload(cliconfig)
|
|
|
|
from tests import utils
|
|
|
|
|
|
# Setup logging
|
|
rootLogger = logging.getLogger()
|
|
for handler in rootLogger.handlers:
|
|
rootLogger.removeHandler(handler)
|
|
|
|
logging.basicConfig(level=logging.DEBUG,
|
|
format="%(levelname)-8s %(message)s")
|
|
|
|
if utils.get_debug():
|
|
rootLogger.setLevel(logging.DEBUG)
|
|
else:
|
|
rootLogger.setLevel(logging.ERROR)
|
|
|
|
_cleanup_imports = []
|
|
|
|
|
|
def _import(name, path):
|
|
_cleanup_imports.append(path + "c")
|
|
return imp.load_source(name, path)
|
|
|
|
|
|
def _cleanup_imports_cb():
|
|
for f in _cleanup_imports:
|
|
if os.path.exists(f):
|
|
os.unlink(f)
|
|
|
|
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")
|
|
|
|
# Variable used to store a local iso or dir path to check for a distro
|
|
# Specified via 'python setup.py test_urls --path"
|
|
URLTEST_LOCAL_MEDIA = []
|