Coming from eclipse world I'm being used to have almost instant feedback from running unit tests. So this is a huge drawback for me, when I have to wait almost 4-6 seconds every time I run my tests(and I run them quite often) because Make is compiling and doing other stuff. I have tried turning on autocompilation feature, but I can't see any speed improvements from that. I can also remove Make step from running tests and rely only on autocompile, but then often times I get false positive/negative from my tests because the actual changes havent been compiled yet.
Is there something I can do to speed up Make and compilation?