How to Solve NameError: name 'DjangoTestSuiteRunner' is not defined -- django

Solution: Import the 'DjangoTestSuiteRunner' module

# Add the following line to the top of your code
from django.test.simple import DjangoTestSuiteRunner

 

For more information:
django DjangoTestSuiteRunner