Parallel tests and debugging

When running tests in parallel if I add a debugger anywhere chances are it hits in multiple tests running in parallel making interaction impossible since everything is running in parallel.

I use guard to run my tests so when this happens it usually means needing to restart the guard process.

4 Likes