By I get all of my test cases under one test suite nosetests. Is it possible to configure nose to create testsuite for each module it loads tests from.
For example if I have a system like:
packageA
moduleA
testA
testB
testC
moduleB
testA
testB
Upon running nose, I get:
nosetests
testA
testB
testC
testA
testB
I am wondering if I can configure nose to output:
moduleA
testA
testB
testC
moduleB
testA
testB
As it provides easier resolution of test cases.