如果安装了 pytest-xdist,如何通过 pytest -nauto 启用并行性



要启用并行测试,必须安装pytest-xdist并使用传递-nauto选项来pytest使用所有可用的CPU。我想默认启用-nauto,但仍然pytest-xdist可选。所以这是行不通的:

[pytest]
addopts = -nauto

如果安装了 pytest-xdist,有没有办法默认启用 pytest 并行性?(如果需要,也可以使用 pytest -n0 再次禁用它。

我想必须写某种conftest.py钩子吗?可以检测到已安装的插件,但是pytest_configure在加载插件后运行,这可能为时已晚。此外,我不确定此时如何添加选项(或如何配置直接操作 xdist)。

您可以检查xdist选项组是否定义了numprocesses arg。这表示已安装pytest-xdist,并将处理该选项。如果不是这种情况,您自己的虚拟参数将确保该选项已知pytest(并安全地忽略):

# conftest.py
def pytest_addoption(parser):
    argdests = {arg.dest for arg in parser.getgroup('xdist').options}
    if 'numprocesses' not in argdests:
        parser.getgroup('xdist').addoption(
            '--numprocesses', dest='numprocesses', metavar='numprocesses', action='store',
            help="placeholder for xdist's numprocesses arg; passed value is ignored if xdist is not installed"
    )

现在,即使未安装 pytest-xdist,您也可以将该选项保留在pytest.ini中;但是,您需要使用 long 选项:

[pytest]
addopts=--numprocesses=auto

原因是短选项是为pytest本身保留的,因此上面的代码没有定义或使用它。如果您确实需要简短选项,则必须求助于私有方法:

parser.getgroup('xdist')._addoption('-n', '--numprocesses', dest='numprocesses', ...)

现在您可以在配置中使用 short 选项:

[pytest]
addopts=-nauto

相关内容

  • 没有找到相关文章

最新更新