Is it possible not to use a unit test tool provided by Django but use native python unittest library?
I know that for simple tests it works just fine. But when i involve other apps and models into the test i get various exceptions like 'apps are not loaded yet and so on'.
So is there a workaround to test django project with unittest lib that works in most cases ?