Re: failure to load fixtures during unit tests

2016-05-09 Thread Rich Rauenzahn
FYI, I was finally able to resolve this. I had an assumption that TestCase's began with a freshly created database between TestCase classes. I asserted this in _fixture_setup() and found that assumption to be false. Upon further research I found a setUpClass() in another TestCase that create

Re: failure to load fixtures during unit tests

2016-05-05 Thread Rich Rauenzahn
Thanks, Tim. Unfortunately I can't move past Django 1.7 yet -- dependencies. I've been marching my way up one revision at a time hopefully up to 1.9 as a way to keep the scope of what breaks under control as I move through each major revision and stabilize my project. Then I attack replacing

Re: failure to load fixtures during unit tests

2016-05-04 Thread Tim Graham
Hi Rich, django-users is the appropriate place to ask "is it a bug?" type questions. We try not to use this mailing list as a second level support channel, otherwise it'd get really noisy. Thanks for understanding. By the way, Django 1.7 is no longer supported. Please make sure you can reproduc

failure to load fixtures during unit tests

2016-05-04 Thread Rich Rauenzahn
I'm in the middle of trying to track down a problem with loading fixtures during unit tests -- I'm hesitant to call it a bug in Django 1.7, but the inconsistent behavior is really stumping me. Essentially I've made a fixture via manage dumpdata --indent=3 -e sessions -e admin -e contenttype