anfema / integrate

Python integration test framework
BSD 3-Clause "New" or "Revised" License
39 stars 7 forks source link

Stack traces are not shown for exceptions raised in test code #8

Open danmetzroth opened 4 years ago

danmetzroth commented 4 years ago

When each TestCase is executed, if an Exception is raised in the test code, only the Exception name is printed

I think the output of traceback.format_exc() would be appropriate to add to the error log. It should probably only be displayed when verbosity=2

If you like, I can submit a PR