mirror of
https://github.com/virt-manager/virt-manager.git
synced 2025-02-14 01:13:38 -06:00
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
#
|
|
# 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 logging
|
|
import os
|
|
|
|
os.environ["VIRTINST_TEST_TRACKPROPS"] = "1"
|
|
|
|
import virtinst
|
|
virtinst.enable_rhel_defaults = False
|
|
|
|
from tests import utils
|
|
|
|
# pylint: disable=W0212
|
|
# Access to protected member, needed to unittest stuff
|
|
|
|
# Force certain helpers to return consistent values
|
|
virtinst.util.is_blktap_capable = lambda ignore: False
|
|
virtinst.util.default_bridge = lambda ignore1: ["bridge", "eth0"]
|
|
|
|
# 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)
|