user0007

Results 2 comments of user0007

Of course. ``` Traceback (most recent call last): File "/home/venvs/local/lib/python2.7/site-packages/django/core/management/base.py", line 222, in run_from_argv self.execute(*args, **options.__dict__) File "/home/venvs/local/lib/python2.7/site-packages/django/core/management/commands/test.py", line 72, in execute super(Command, self).execute(*args, **options) File "/home/venvs/local/lib/python2.7/site-packages/django/core/management/base.py", line 255, in...

I found solution! The error is caused by relative import in tests.py: ``` from .models import MyModel ``` raises error, but: ``` from apps.myapp.models import MyModel ``` works fine o_O...