How do I run a unit test in Python?

How do I run a unit test in Python?

The command for running the tests include python -m unittest filename.py. As of our case, the right command for running the tests would be python -m unittest test_utils.py.