15

在以前版本的鼻子测试框架中,有几种方法可以只指定所有测试的一个子集:

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中选择特定的测试或测试用例?

4

2 回答 2

27

我在开发/测试中有一些测试,例如:

dev/tests/test_file.py

我可以通过以下方式运行它:

nose2 -s dev tests.test_file

此外,我可以在测试用例中运行特定的测试方法,如下所示:

nose2 -s dev tests.test_file.TestCase.test_method

这能实现你想要的吗?

于 2014-01-31T01:02:31.627 回答
-1

您必须使用配置文件:

nose2 -c nose2.cfg

鼻子2.cfg:

[unittest]
start-dir=test/module

如果您正在考虑编写一个脚本来修改该配置文件并重新运行您的鼻子测试,您可能只想运行所有测试。单元测试应该很快……但是如果您只关注测试的特定部分,那么在开发过程中跳转到该文件并更改该行是值得的。

于 2013-07-26T20:23:56.240 回答