我有一个要移植到nose2 的nose.cfg 文件。我在nose2 文档中看不到任何忽略文件或目录的方法。
在鼻子 1 中,这是通过以下两个标志完成的:
ignore-files=settings_test*
exclude-dir=ignorethisdir
在nose2中如何做到这一点?
我有一个要移植到nose2 的nose.cfg 文件。我在nose2 文档中看不到任何忽略文件或目录的方法。
在鼻子 1 中,这是通过以下两个标志完成的:
ignore-files=settings_test*
exclude-dir=ignorethisdir
在nose2中如何做到这一点?
安装nose-exclude 时,exclude-dir可用。此插件目前仅适用于nose1:https ://bitbucket.org/kgrandis/nose-exclude/overview
可用的是定义:
__test__ = False
在每个 TestCase 或 TestSuite 继承的类中。
它们必须从这些类继承才能正常工作。这是由nose2附带的dundertest插件提供的,默认情况下是启用的。