如何在Nose2中运行特定测试



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

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-测试

然而,我在Nose2中找不到任何关于类似测试选择的信息。文档中提到了不同的测试发现,但这似乎并不相关。

有没有办法在nose2或(更普遍地)在unittest2中选择特定的测试或测试用例?

我在dev/tests中有一些测试,例如:

dev/tests/test_file.py

我可以用运行这个

nose2 -s dev tests.test_file

此外,我能够在测试用例中运行一个特定的测试方法,如下所示:

nose2 -s dev tests.test_file.TestCase.test_method

这能实现你想要的吗?

如果您在tests/path/path2/mytest.py 中进行测试,则在没有-s的情况下工作

你可以nose2 tests.path.path2.mytest

您必须使用一个配置文件:

nose2 -c nose2.cfg

nose2.cfg:

[unittest]
start-dir=test/module

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

相关内容

  • 没有找到相关文章

最新更新