mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-01-10 01:18:03 +03:00
48e32b429d
The copyright headers in every file were chjanged in this previous commit
commit b6dcee8eb7
Author: Cole Robinson <crobinso@redhat.com>
Date: Tue Mar 20 15:00:02 2018 -0400
Use consistent and minimal license header for every file
Where before this they said "
"either version 2 of the License, or (at your option) any later version."
Now they just say
"GNU GPLv2"
This fixes it to say "GNU GPLv2 or later" again.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
64 lines
1.6 KiB
Python
64 lines
1.6 KiB
Python
# Copyright (C) 2013, 2014 Red Hat, Inc.
|
|
#
|
|
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
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
|
|
imp.reload(cliconfig)
|
|
|
|
from tests import utils
|
|
|
|
virtinstall = None
|
|
virtclone = None
|
|
virtconvert = None
|
|
virtxml = None
|
|
|
|
|
|
def 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.clistate.debug:
|
|
rootLogger.setLevel(logging.DEBUG)
|
|
else:
|
|
rootLogger.setLevel(logging.ERROR)
|
|
|
|
|
|
def setup_cli_imports():
|
|
_cleanup_imports = []
|
|
|
|
def _cleanup_imports_cb():
|
|
for f in _cleanup_imports:
|
|
if os.path.exists(f):
|
|
os.unlink(f)
|
|
|
|
def _import(name, path):
|
|
_cleanup_imports.append(path + "c")
|
|
return imp.load_source(name, path)
|
|
|
|
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")
|