Re: Models inside test folder - Django 1.7 problem

2014-09-04 Thread Carl Meyer
On 09/04/2014 08:53 AM, galozek wrote: > I'm trying to port my project to Django 1.7. Every goes fine except 1 > problem with an abstract model testing. > Django 1.7 runs migrate command while testing. That means models not > included in migrations are omitted. That's the issue I've got. > > What

Models inside test folder - Django 1.7 problem

2014-09-04 Thread galozek
Hi, I'm trying to port my project to Django 1.7. Every goes fine except 1 problem with an abstract model testing. Django 1.7 runs migrate command while testing. That means models not included in migrations are omitted. That's the issue I've got. What I do in my /app/tests/ directory: - I kee