我使用nosetests框架编写测试用例。我正在使用@attr来选择正确的测试用例
我的test.py是这样的......
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):
...
如果我执行此测试用例,结果将如下所示
$nosetests test.py -a mod=mod3
----------------------------------------------------------------------
Ran 0 tests in 0.001s
OK
有没有办法可以跳过测试用例信息?主要是因为我有超过1000个测试用例,很难知道哪个测试用例被跳过了。