2
pytestテスト内のロギング
いくつかの状態変数を調べるために、テスト関数内にいくつかのロギングステートメントを配置したいと思います。 次のコードスニペットがあります。 import pytest,os import logging logging.basicConfig(level=logging.DEBUG) mylogger = logging.getLogger() ############################################################################# def setup_module(module): ''' Setup for the entire module ''' mylogger.info('Inside Setup') # Do the actual setup stuff here pass def setup_function(func): ''' Setup for test functions ''' if func == test_one: mylogger.info(' Hurray !!') def test_one(): ''' Test One …