views:

17

answers:

1

i think there was some directive i could enter in the test that would allow me to run some commands interactively at the point of the directive and then continue the example, but i dont remember what it was...

+2  A: 

Do you mean you place a breakpoint in your test to enter the debugger?

import pdb; pdb.set_trace()
uloBasEI