When using other coverage commands (like coverage html), the Django settings may not be set properly. For example, these commands:
coverage run manage.py test ; coverage html
manage.py will set the settings properly, but coverage html won't know where they are.
Should we require the user to set the DJANGO_SETTINGS_MODULE? Should we make it so the settings aren't required?