Skip to content

Tag: unit-testing

Specify specific testcases in Python unit test TestLoader

I have the following folder structure. Both the test files have two test cases each. File smoke.py contains The above code runs four test cases which is expected. Is there a way to run some specific test cases from file test1.py and test2.py where I can explicitly add those testcases to the suite1 and suite 2…