I\'m running this command:
python manage.py test project.apps.app1.tests
and it causes this error:
AttributeError: \
I resolved the error "AttributeError: module 'utils' has no attribute 'name_of_my_function' " by fixing a circular import reference. My files manage.py and utils.py each had an import statement pointing at each other.