nose icon indicating copy to clipboard operation
nose copied to clipboard

Replace logging.exception with logging.error

Open unnonouno opened this issue 7 years ago • 0 comments

When I used nosetests command with --stop option, I failed to run my test, and it raises an exception. And, I found that logging.exception must be called from only except clause. So I replaced it with logging.error. https://docs.python.org/2/library/logging.html#logging.Logger.exception

I used python 3.4.5 and nose 1.3.7. You can easily reproduce the same problem with three test case sources which always fail and run nosetests --processes=2 --stop.

unnonouno avatar Mar 08 '17 11:03 unnonouno