Remove logging.basicConfig calls from tests
And remove one from blocktypes. What was it even doing there?
This commit is contained in:
parent
b92ac828aa
commit
261df22b80
@ -14,8 +14,6 @@ from mceditlib.blocktypes.json_resources import openResource, getJsonFile
|
||||
|
||||
|
||||
log = getLogger(__name__)
|
||||
import logging
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
MCYDecreasing = 0
|
||||
MCYIncreasing = 1
|
||||
|
@ -1,4 +1 @@
|
||||
__author__ = 'Rio'
|
||||
|
||||
#import logging
|
||||
#logging.basicConfig(level=logging.DEBUG)
|
||||
|
@ -5,10 +5,6 @@ from __future__ import absolute_import, division, print_function
|
||||
from collections import deque
|
||||
import logging
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
|
||||
def testThrashing(pc_world):
|
||||
if not hasattr(pc_world, '_chunkDataCache'):
|
||||
|
@ -1,8 +1,6 @@
|
||||
from mceditlib.worldeditor import WorldEditor
|
||||
import logging
|
||||
import numpy
|
||||
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
|
||||
def test_relight(schematic_world, pc_world):
|
||||
|
@ -6,7 +6,6 @@ from mceditlib.revisionhistory import RevisionHistory
|
||||
import logging
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
logging.basicConfig(level=logging.INFO)
|
||||
|
||||
from .conftest import copy_temp_file
|
||||
|
||||
|
Reference in New Issue
Block a user