Im using nosetests framework for writing test cases. I'm using @attr to pick right test cases
my test.py is something like this...
class Test_module1_tcs:
@classmethod
def setup_class(cls):
...
def setup(self):
...
@attr(mod=['mod1', 'mod2'])
def test_particular_func(self):
...
def teardown(self):
...
@classmethod
def teardown_class(cls):
...
if i execute this test case, the result will be as below
$nosetests test.py -a mod=mod3
----------------------------------------------------------------------
Ran 0 tests in 0.001s
OK
is there a way where i can get skipped test case info? Mainly because i have more than 1000 test cases, its getting hard to know which test case was skipped.