[Django]-Django 1.5.1 'ImportError: No module named urls' when running tests

6👍

If you created the urls.py file outside of app named yoda, then set the

ROOT_URLCONF = 'urls'

if you created urls.py in a module then set

ROOT_URLCONF = 'modulename.urls'

Try with this

👤Jaf

Leave a comment