I would like to put some logging statements within test function to examine few state variables.

I have the following code snippet:

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 '''
    mylogger.info('Inside Test 1')
    #assert 0 == 1
    pass

def test_two():
    ''' Test Two '''
    mylogger.info('Inside Test 2')
    pass

if __name__ == '__main__':
    mylogger.info(' About to start the tests ')

    pytest.main(args=[os.path.abspath(__file__)])

    mylogger.info(' Done executing the tests ')

When I execute the above program, I get the following output:

[bmaryada-mbp:/Users/bmaryada/dev/platform/main/proto/tests/tpch $]python minitest.py
INFO:root: About to start the tests 
======================================================== test session starts =========================================================
platform darwin -- Python 2.6.2 -- pytest-2.0.0
collected 2 items 

minitest.py ..

====================================================== 2 passed in 0.01 seconds ======================================================
INFO:root: Done executing the tests 

Notice that only the logging messages from the 'name == main' block get emitted to the console. Is there a way to force py.test to emit logging to console from test methods as well?

Thanks you very much in advance.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 2 down vote accepted

Works for me, here's the output I get: [snip -> example was incorrect]

Edit: It seems that you have to pass the -s option to py.test so it won't capture stdout. Here (py.test not installed), it was enough to use python pytest.py -s pyt.py.

For your code, all you need is to pass -s in args to main:

 pytest.main(args=['-s', os.path.abspath(__file__)])

See the py.test documentation on capturing output.

link|improve this answer
Sorry. I pasted the code in haste. Please remove the 'assert 0 == 1' from the 'test_one' function to notice the 'problem'. Only when there is some failure (which I forced by having a false assert), py.test seems to print the logging information. – superselector Jan 12 '11 at 21:23
No problem, I found out how to fix on the command line, looking for a programmatic way. – TryPyPy Jan 12 '11 at 21:36
1  
you could also redirect the logging output to some file instead of the default implicit stderr. – hpk42 Jan 12 '11 at 21:59
@superselector hpk42 is the py.test guy, do listen. IIUC, in your code it'd be logging.basicConfig(filename="somelog.txt", level=logging.DEBUG). – TryPyPy Jan 12 '11 at 22:24
Thank you very much. The '-s' option solved my problem. – superselector Jan 12 '11 at 23:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.