我确实有一个复杂的 tox.ini 配置,其中包含不同版本的 python 的多个环境。
我想知道如何告诉 tox 只在默认的 python 解释器上运行覆盖。
问题之一是默认的 Python 环境可能因平台而异。
我确实有一个包装脚本,它调用tox -e py25,py26,docs
其中 -e 参数是检测到的 python 版本。
[tox]
...
[testenv:docs]
...
[testenv]
commands=py.test --cov-report xml --cov scripts
...
[testenv:py26]
...
[testenv:py25]
...
期望的行为:运行 pytest 覆盖单个环境(这应该与 jenkins 集成运行)。