0
使用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個測試用例,所以很難知道哪個測試用例被跳過了。