I am following a tutorial for unittest in Python (https://docs.python.org/3/library/unittest.html).
I have a class with functions in it, Is there anyway if I want to run single function test from the class ?
Documentation says we can access individual test methods as below
python -m unittest test_module1 test_module2
Please refer attached image.