add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

25
pages.zh/common/tox.md Normal file
View File

@@ -0,0 +1,25 @@
# 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}}`