I have not been able to execute the deletion of any User that is created during test while tearDown() methods are run. Error is puzzling, as it suggest no models are loaded.
have tried the following:
User.objects.filter(id__in=users_to_remove).delete()
User.objects.filter(username='testuser2').delete()
And both return the same error message.
Does anyone know what is the propper way to delete a user from the testing file?
Detail of Functional Test File: https://gist.github.com/leoreq/af090569980f06985f83
Error Message Returned: Erorr Message returned in terminal