Debugging Django with PyCharm.
When I run anything in the debugger, it runs slow.
Django start up time is pretty long.
Don't get me wrong - I love PyCharm, as it has all the bells and whistles needed for a comfortable debugging session... and Python is still way easier and probably faster to debug, than other languages (like C). But even after I tuned my PostgreSQL database for the testing (Optimise PostgreSQL for fast testing), even if I have SSD drive and i7 quad-core CPU, even if I specifically told my antivirus software NOT to touch anything in C:\Python27 directory and my project dir, it is still very slow.
Any ideas, how can I speed up debugging?
I would love to see improvements mainly in process start-up time, because my most often use-case is when I debug a single unit test.