왜 이런 일이 발생합니까? 중복 호출은 내가pytest가 중복 메소드를 호출하는 이유
코드
import logging, logging.handlers
class TestCase:
def setup_method(self,test_method):
self.log = logging.getLogger('test')
self.log.addHandler(logging.StreamHandler())
def test_one(self):
log = self.log
log.info('one')
def test_two(self):
log = self.log
log.info('two')
콘솔 밖으로
$pytest -s
=========================================== test session starts ===========================================
platform darwin -- Python 3.6.2, pytest-3.3.1, py-1.5.2, pluggy-0.6.0
rootdir: /Users/taeun/dev/workspace/test/pytest-test/tests, inifile:
collected 2 items
test_one.py one
.two
two
. [100%]
사람이 나를 도와 "self.log"를 추가하기 때문에?
소스 코드를 이미지가 아닌 텍스트로 붙여주십시오. –
방금 전에 업데이트! 고마워요 – taeun