在以前版本的鼻子测试框架中,有几种方法可以只指定所有测试的一个子集:
nosetests test.module
nosetests another.test:TestCase.test_method
nosetests a.test:TestCase
nosetests /path/to/test/file.py:test_function
http://nose.readthedocs.org/en/latest/usage.html#selecting-tests
但是,我在 Nose2 中找不到任何有关类似测试选择的信息。文档中提到了不同的测试发现,但这似乎并不相关。
有没有办法在nose2或(更一般地)在unittest2中选择特定的测试或测试用例?