Re: Debugging Unit Tests

2010-11-23 Thread Murray
Aah no, I'm using xmlrunner. Looks like switching back to the default works for me too. On Nov 22, 4:18 pm, Shawn Milochik wrote: > This works for me. Are you certain the code you think is being executed is > where it's "freezing"? > > Try some logging statements. How are you running your tests

Re: Debugging Unit Tests

2010-11-22 Thread Shawn Milochik
This works for me. Are you certain the code you think is being executed is where it's "freezing"? Try some logging statements. How are you running your tests -- are you just using the standard test runner? On Nov 22, 2010, at 9:04, Murray wrote: > pdb dosn't seem to work inside my unit tests,

Debugging Unit Tests

2010-11-22 Thread Murray
pdb dosn't seem to work inside my unit tests, whenever I run set_trace the unit test running freezes with no output. I presume this is because the output from the tests is suppressed somehow when they are being run. Is there someway to disable this so that I can use pdb to debug my failing tests