How to run individual tests in python
Tested by me.
You specify the path to the file where the tests are residing. After the path you add a string that specifies the place of the test inside that file, in dotted format:
python <path_to_file> <class_name>.<test_method_name>
python testMyCase.py MyCase.testItIsHot
Read more: Link - python - Running single test from unittest.TestCase via command line - Stack Overflow