I’m use nosetests to run some tests. However, after the tests have finished running, the nosetests process just sits there, and will not exit. Is there anyway to diagnose this? Does Python have a facility similar to sending Java a kill -QUIT which will print a stack trace?
I’m use nosetests to run some tests. However, after the tests have finished running,
Share
You can enter the debugger and type
bt:Then you can step through the operation and see where it hangs.