测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Pytest----如何只执行尚未提交git代码仓脚本
收藏本文
作者:redrose2100 类别: 日期:2022-09-28 05:36:07 阅读:711 次 消耗积分:0 分
[TOC] ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/7cd47362-951c-11ee-986a-0242ac110004.png) 当使用git管理脚本代码,在有些时候,我们想只跑尚未提交代码仓或者在本地已经修改的脚本,或者优先执行新增或者修改的脚本,这时候就需要使用pytest的第三方插件pytest-picked了。首先需要使用如下命令安装一下插件。 ```bash pip install pytest-picked ``` 接下来先准备一下测试环境,即先再test_demo.py文件中写入如下测试代码 ```python def test_01(): print("in test01...") assert 1==1 def test_02(): print("in test02...") assert 1==1 ``` 然后执行 git init 命令将当前目录初始化为git代码仓。执行结果如下: ```bash (demo--ip5ZZo0) D:\demo>git init warning: templates not found in .git_template Initialized empty Git repository in D:/demo/.git/ (demo--ip5ZZo0) D:\demo> ``` 然后使用git status 查看当前仓库的状态,如下,即此时test_demo.py ```bash (demo--ip5ZZo0) D:\demo>git status On branch master Untracked files: (use "git add
..." to include in what will be committed) test_demo.py nothing added to commit but untracked files present (use "git add" to track) (demo--ip5ZZo0) D:\demo> ``` 首先将test_demo.py提交到仓库,执行如下命令,即通过git add 和git commit之后当前仓库显示已经全部提交到仓库了。 ```bash (demo--ip5ZZo0) D:\demo>git add . (demo--ip5ZZo0) D:\demo>git commit -m "add test_demo.py" [master beff6ce] add test_demo.py 1 file changed, 10 insertions(+) create mode 100644 test_demo.py (demo--ip5ZZo0) D:\demo>git status On branch master nothing to commit, working tree clean (demo--ip5ZZo0) D:\demo> ``` Pytest 通过使用 –picked 参数即可执行未提交到仓库的代码,现在先使用pytest –picked 命令执行一次,结果如下,提示没有测试脚本。 ```bash (demo--ip5ZZo0) D:\demo>pytest -s --picked Changed test files... 0. [] Changed test folders... 0. [] =================== test session starts =================== platform win32 -- Python 3.7.9, pytest-7.1.3, pluggy-1.0.0 Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket=
rootdir: D:\demo, testpaths: plugins: forked-1.4.0, picked-0.4.6, random-order-1.0.4, repeat-0.9.1, xdist-2.5.0 collected 0 items ================== no tests ran in 0.01s ================== (demo--ip5ZZo0) D:\demo> ``` 此时新增一个测试文件test_demo2.py,编写测试代码如下: ```python def test_03(): print("in test03...") assert 1==1 def test_04(): print("in test04...") assert 1==1 ``` 通过git status 命令也可以看到此时test_demo2.py处于尚未提交的状态,如下: ```bash (demo--ip5ZZo0) D:\demo>git status On branch master Untracked files: (use "git add
..." to include in what will be committed) test_demo2.py nothing added to commit but untracked files present (use "git add" to track) (demo--ip5ZZo0) D:\demo> ``` 再次执行 pytest -s –picked 命令,可以发现此时只执行了尚未提交的测试用例test_03和test_04,而已经提交的test_demo.py文件中的test_01和test_02未被执行。达到了预期了的效果。 当然在有些时候,我们也有可能希望优先执行尚未提交的测试脚本,然后再执行其他的脚本,此时pytest-picked插件也是支持此功能的,只需要指定 –picked=first 即可,执行结果如下,通过打印的结果可以看出此时先执行了test_03和test_04,然后才执行test_01和test_02 ```bash (demo--ip5ZZo0) D:\demo>pytest -s --picked=first =================== test session starts =================== platform win32 -- Python 3.7.9, pytest-7.1.3, pluggy-1.0.0 Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket=
rootdir: D:\demo plugins: forked-1.4.0, picked-0.4.6, random-order-1.0.4, repeat-0.9.1, xdist-2.5.0 collected 4 items test_demo2.py in test03... .in test04... . test_demo.py in test01... .in test02... . ==================== 4 passed in 2.48s ==================== (demo--ip5ZZo0) D:\demo> ``` 这就是pytest-picked插件的主要功能,即可以做到只执行尚未提交git代码仓库的测试脚本或者优先执行尚未提交git代码仓的脚本。
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/403
上一篇:
Pytest----如何随机执行用例
下一篇:
Pytest----如何查找用例耗时最长的N个
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件