Files
tldr/pages.zh/common/tox.md

25 lines
462 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# tox
> 在多个 Python 版本中自动化 Python 测试。
> 使用 tox.ini 配置环境和测试命令。
> 更多信息:<https://github.com/tox-dev/tox>。
- 在所有测试环境中运行测试:
`tox`
- 创建一个 `tox.ini` 配置:
`tox-quickstart`
- 列出可用的环境:
`tox --listenvs-all`
- 在特定环境中运行测试(例如 Python 3.6
`tox -e {{py36}}`
- 强制重新创建虚拟环境:
`tox --recreate -e {{py27}}`