Python自动化工具Tox用法是什么,是如何工作的
Admin 2022-08-10 群英技术资讯 386 次浏览
最近在搜集github上包含测试样例的Python项目,并试图在docker环境下跑通这些项目,发现这些项目主要使用的测试框架有 : unittest, pytest ,nosetest。还有一些用到了自动化工具Tox,所以简单了解了一下。
Command line driven CI frontend and development task automation tool
命令行驱动的 CI 前端和开发任务自动化工具
tox 的项目地址是:https://github.com/tox-dev/tox
其核心作用是支持创建隔离的 Python 环境,在里面可以安装不同版本的 Python 解释器与各种依赖库,以此方便开发者做自动化测试、打包、持续集成等事情。
简单来说,tox 是一个管理测试虚拟环境的命令行工具。 它已存在多年且广被开发者们使用,例如,著名的云计算平台 OpenStack 也采用了它,作为最基础的测试工具之一。
安装
pip install tox
将有关项目和希望项目在其中运行的测试环境的基本信息放入应位于文件旁边的文件中:tox.ini
setup.py
# content of: tox.ini , put in same dir as setup.py [tox] envlist = py27,py36 [testenv] # install testing framework # ... or install anything else you might need here deps = pytest # run the tests # ... or run any other command line tool you need to run here commands = pytest
若要打包、安装和测试项目,现在可以在命令提示符下键入:
tox
tox 的行为由其配置文件控制,当前它支持 3 种配置文件:
pyproject.toml
tox.ini
setup.cfg
我们以**python-project-wizard**项目为例,看一下开发人员写的tox配置文件。
pyproject.toml
[tool] [tool.poetry] name = "ppw" version = "1.1.1" description = "A Wizard to create a skeleton python project with up-to-date technology" license = "BSD-3-Clause" authors = ["Aaron Yang <aaron_yang@jieyu.ai>"] readme = "README.md" repository = "https://github.com/zillionare/cookiecutter-pypackage" documentation = "https://zillionare.github.io/cookiecutter-pypackage/" keywords = ['cookiecutter', 'template', 'package'] packages = [ {include = "ppw"} ] include = [ '{{cookiecutter.project_slug}}/**/*', 'cookiecutter.json', 'hooks/*' ] [tool.poetry.dependencies] python = ">=3.7,<4.0" cookiecutter = "1.7.2" pytest = {version = "^5.4.3", optional=true} pytest-cookies = {version = "^0.5.1", optional=true} pyyaml = {version="^5.3.1",optional=true} mkdocs = {version="^1.1.2",optional=true} mkdocs-material = {version="^6.1.7",optional=true} mkdocs-material-extensions = {version="^1.0.1",optional=true} pytest-cov = {version="^2.10.1",optional=true} tox = {version = "^3.20.1", optional=true} mkdocs-include-markdown-plugin = {version = "^2.8.0", optional=true} fire = {version="^0.4.0", optional=true} pre-commit = {version="^2.18.1",optional=true} [tool.poetry.extras] dev = [ "pytest", "pytest-cookies", "pyyaml", "mkdocs", "mkdocs-material", "mkdocs-material-extensions", "pytest-cov", "tox", "mkdocs-include-markdown-plugin", "fire" ] [tool.black] line-length = 88 include = '\.pyi?$' exclude = ''' /( \.eggs | \.git | \.hg | \.mypy_cache | \.tox | \.venv | _build | buck-out | build | dist )/ ''' [build-system] requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" [tool.poetry.scripts] ppw = 'ppw.cli:main'
.ini
)文件是一种非常原始的基础形式,但各家有各家的用法,而且它最多只能解决一层嵌套。只适合非常非常简单的配置文件,一旦需要两层嵌套,或需要数组,就力不从心了。.toml
)横空出世。它彻底放弃了括号或缩进的底层原理,而是采取了显式键名链的方式。tox.ini
[tox] envlist = py37,py38,py39,py310, docs isolated_build = True [gh-actions] python = 3.7: py37 3.8: py38, docs 3.9: py39 3.10: py310 [testenv:docs] basepython=python allowlist_externals = mkdocs commands= mkdocs build [testenv] extras = dev setenv = PYTHONPATH = {toxinidir} commands = pytest -s --cov-report=term-missing tests
使用tox-quickstart快速生成tox.ini,也可以根据模板手写tox.ini文件
tox 本身定位是一个测试工具,它试图令 Python 测试工作变得自动化、标准化与流程化。但跟 unittest 和 pytest 这些测试框架不同,它作用的是代码层面之外的事情,是一种项目级的工具。因此,它需要跟这些测试框架相结合,或者同时处理多种自动化任务(如跑 pep8、测代码覆盖率、生成文档等等),这样才能更好地发挥它的价值。
它的一大特色在于创建/管理虚拟环境,但这只是为了方便测试而使用的手段,因此相比其它可管理虚拟环境的工具,如 Virtualenvwrapper、conda、pipenv、poetry,它在某些方面就存在着不足。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
什么是模板匹配?模板匹配,就是在一幅图像中寻找另一幅模板图像最匹配(也就是最相似)的部分的技术。
这篇文章主要介绍了解决tensorflow 与keras 混用之坑,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
这篇文章主要为大家介绍了python之异步编程,具有一定的参考价值,感兴趣的小伙伴们可以参考一下,希望能够给你带来帮助<BR>
这篇文章主要介绍了python中的format是什么意思?format怎么用?今天小编就为大家介绍一下format用法,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
这篇文章主要为大家详细介绍了Python利用Pygame模块实现简单打地鼠游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008