gpt4 book ai didi

pytest - 如何根据平台有条件地设置 tox 变量

转载 作者:行者123 更新时间:2023-12-04 10:07:25 26 4
gpt4 key购买 nike

我的一些测试只在 Linux 下运行,而其他的则可以在任何地方运行。在 Linux 上运行时,我想将最小覆盖率变量设置为比在台式机 Mac 上运行时更高的值。

我怎样才能做到这一点?

这是我的 tox.ini 的一些内容:

[tox]
MINCOVERAGE = 35
envlist = py37

[testenv]
commands =
pytest -v -v -x --fulltrace --tb=long --showlocals \
--cov={envsitepackagesdir}/secretsapi --cov-report=html --no-cov-on-fail \
--cov-fail-under={[tox]MINCOVERAGE} mypackage/tests

我想在 Linux 上将 MINCOVERAGE 设置为 70,在其他平台上设置为 35。

我怎样才能做到这一点?

最佳答案

您可以定义特定于操作系统的环境并为每个操作系统设置一个具有不同值的环境变量:

[tox]
envlist = py37-{linux,mac,win}

[testenv]
platform =
linux: linux
mac: darwin
win: win32
deps =
pytest
pytest-cov
setenv =
MINCOVERAGE = 35 # default for mac, win
linux: MINCOVERAGE = 70 # special for linux
commands =
pytest ... --cov-fail-under={env:MINCOVERAGE}

引用 tox文档,正如@sinoroc 在评论中指出的那样: Platform specification .

关于pytest - 如何根据平台有条件地设置 tox 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61510250/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com