How to Solve NameError: name 'test_support' is not defined -- test

Solution: Import the 'test_support' module

# Add the following line to the top of your code
from test import test_support

 

For more information:
test test_support