Skip to content Skip to sidebar Skip to footer

How To Fix "typeerror: Argument Of Type 'connectionhandler' Is Not Iterable" When Running A Django Test?

When I do ```python -m unittest`` inside of my users app, I get this error: TypeError: argument of type 'ConnectionHandler' is not iterable I was customizing my User model in djan

Solution 1:

The error is probably due to the configuration of your IDE. What happens when you run "python manage.py test" ?


Post a Comment for "How To Fix "typeerror: Argument Of Type 'connectionhandler' Is Not Iterable" When Running A Django Test?"