my development workflow with python often boils down to repeatedly running `pytest --ff --pdb -x`...
- run my tests, running any previous failures first
- drop into the debugger when a test fails (or of course, hits a breakpoint)
- end the test run after the first failure
use debugger to figure out what went wrong, fix it, wash, rinse, repeat
- run my tests, running any previous failures first - drop into the debugger when a test fails (or of course, hits a breakpoint) - end the test run after the first failure
use debugger to figure out what went wrong, fix it, wash, rinse, repeat