Pytest自定义标记mark及特定运行方式

mark 标记

标记执行指定类

pytest.main(['-s','文件名','-m=标记名'])

pytest.main(['-s','test01.py','-m=test'])

import pytest
@pytest.mark.test
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':#运行指定的类pytest.main(['-s','test01.py','-m=test'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collected 2 itemstest01.py test_01
.test_02
.============================== warnings summary ===============================
C:\Program Files\Python35\lib\site-packages\_pytest\mark\structures.py:324C:\Program Files\Python35\lib\site-packages\_pytest\mark\structures.py:324: PytestUnknownMarkWarning: Unknown pytest.mark.test - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/latest/mark.htmlPytestUnknownMarkWarning,-- Docs: https://docs.pytest.org/en/latest/warnings.html
======================== 2 passed, 1 warnings in 0.05s ========================Process finished with exit code 0

标记执行非指定方法 

pytest.main(['-s','文件名','-m=not 标记名'])

pytest.main(['-s','test01.py','-m=not test'])

import pytestclass Test(object):@pytest.mark.testdef test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':#运行指定的类pytest.main(['-s','test01.py','-m=not test'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collected 2 items / 1 deselected / 1 selectedtest01.py test_02
.============================== warnings summary ===============================
C:\Program Files\Python35\lib\site-packages\_pytest\mark\structures.py:324C:\Program Files\Python35\lib\site-packages\_pytest\mark\structures.py:324: PytestUnknownMarkWarning: Unknown pytest.mark.test - is this a typo?  You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/latest/mark.htmlPytestUnknownMarkWarning,-- Docs: https://docs.pytest.org/en/latest/warnings.html
================= 1 passed, 1 deselected, 1 warnings in 0.05s =================Process finished with exit code 0
-v 指定的函数节点 id
指定执行.py文件
pytest.main(['-v','文件名.py'])  pytest.main(['-v','test01.py'])
import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':pytest.main(['-v','test01.py'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- C:\Program Files\Python35\python.exe
cachedir: .pytest_cache
metadata: {'Platform': 'Windows-10-10.0.18362-SP0', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk1.8.0_101', 'Plugins': {'html': '1.22.0', 'metadata': '1.8.0', 'allure-pytest': '2.8.5'}, 'Python': '3.5.2', 'Packages': {'pluggy': '0.12.0', 'py': '1.8.0', 'pytest': '5.1.2'}}
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collecting ... collected 2 itemstest01.py::Test::test_01 PASSED                                          [ 50%]
test01.py::Test::test_02 PASSED                                          [100%]============================== 2 passed in 0.09s ==============================Process finished with exit code 0

指定执行文件下_类

pytest.main(['-v','文件名.py::类名'])    pytest.main(['-v','test01.py::Test'])

cmd下pytest -v test_server.py::TestClass

import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':pytest.main(['-v','test01.py::Test'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- C:\Program Files\Python35\python.exe
cachedir: .pytest_cache
metadata: {'Plugins': {'html': '1.22.0', 'allure-pytest': '2.8.5', 'metadata': '1.8.0'}, 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk1.8.0_101', 'Python': '3.5.2', 'Packages': {'pytest': '5.1.2', 'py': '1.8.0', 'pluggy': '0.12.0'}, 'Platform': 'Windows-10-10.0.18362-SP0'}
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collecting ... collected 2 itemstest01.py::Test::test_01 PASSED                                          [ 50%]
test01.py::Test::test_02 PASSED                                          [100%]============================== 2 passed in 0.05s ==============================Process finished with exit code 0

指定执行文件下_类_方法

pytest.main(['-v','文件名.py::类名::方法名'])  pytest.main(['-v','test01.py::Test::test_02'])

cmd下pytest -v test_server.py::TestClass::test_method

import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':pytest.main(['-v','test01.py::Test::test_02'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- C:\Program Files\Python35\python.exe
cachedir: .pytest_cache
metadata: {'Packages': {'pytest': '5.1.2', 'pluggy': '0.12.0', 'py': '1.8.0'}, 'Plugins': {'allure-pytest': '2.8.5', 'html': '1.22.0', 'metadata': '1.8.0'}, 'Platform': 'Windows-10-10.0.18362-SP0', 'Python': '3.5.2', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk1.8.0_101'}
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collecting ... collected 1 itemtest01.py::Test::test_02 PASSED                                          [100%]============================== 1 passed in 0.05s ==============================Process finished with exit code 0

指定执行多个节点,文件下_类、文件_类_方法

pytest.main(['-v','文件名.py::类名::方法名','文件名.py::类名'])   pytest.main(['-v','test01.py::Test::test_02','test01.py::Test'])

cmd下用pytest -v test_server.py::TestClass test_server.py::test_send_http

import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')
if __name__=='__main__':pytest.main(['-v','test01.py::Test::test_02','test01.py::Test'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- C:\Program Files\Python35\python.exe
cachedir: .pytest_cache
metadata: {'Python': '3.5.2', 'Platform': 'Windows-10-10.0.18362-SP0', 'Packages': {'py': '1.8.0', 'pluggy': '0.12.0', 'pytest': '5.1.2'}, 'Plugins': {'metadata': '1.8.0', 'html': '1.22.0', 'allure-pytest': '2.8.5'}, 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk1.8.0_101'}
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collecting ... collected 3 itemstest01.py::Test::test_02 PASSED                                          [ 33%]
test01.py::Test::test_01 PASSED                                          [ 66%]
test01.py::Test::test_02 PASSED                                          [ 66%]============================== 3 passed in 0.08s ==============================Process finished with exit code 0

-s模式执行

-s执行多个.py文件

pytest.main(['-s','文件1.py','文件2.py'])

test01.pyimport pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')assert 1==1
if __name__=='__main__':pytest.main(['-s','test01.py','test02.py'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collected 10 itemstest01.py test_01
.test_02
.
test02.py 22222222
{'sex': '男', 'score': '及格', 'classes': '一班'}
.{'sex': '女', 'score': '及格', 'classes': '一班'}
.{'sex': '男', 'score': '及格', 'classes': '二班'}
.{'sex': '女', 'score': '及格', 'classes': '二班'}
.{'sex': '男', 'score': '不及格', 'classes': '一班'}
.{'sex': '女', 'score': '不及格', 'classes': '一班'}
.{'sex': '男', 'score': '不及格', 'classes': '二班'}
.{'sex': '女', 'score': '不及格', 'classes': '二班'}
.============================= 10 passed in 0.10s ==============================Process finished with exit code 0

-s执行.py文件下的类

pytest.main(['-s','文件.py::类名'])

import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')assert 1==1
if __name__=='__main__':pytest.main(['-s','test01.py::Test'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collected 2 itemstest01.py test_01
.test_02
.============================== 2 passed in 0.04s ==============================Process finished with exit code 0

-K指定匹配用例名称执行

pytest.main(['-k','-v','test_01'])

pytest.main(['-k','not test_01','-v'])

pytest.main(['-k','用例名1 or 用例名2','-v'])


import pytest
class Test(object):def test_01(self):print('test_01')def test_02(self):print('test_02')assert 1==1
if __name__=='__main__':pytest.main(['-k','test_01 or test_02','-v'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py
============================= test session starts =============================
platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 -- C:\Program Files\Python35\python.exe
cachedir: .pytest_cache
metadata: {'Python': '3.5.2', 'JAVA_HOME': 'C:\\Program Files\\Java\\jdk1.8.0_101', 'Packages': {'pytest': '5.1.2', 'py': '1.8.0', 'pluggy': '0.12.0'}, 'Platform': 'Windows-10-10.0.18362-SP0', 'Plugins': {'allure-pytest': '2.8.5', 'html': '1.22.0', 'metadata': '1.8.0'}}
rootdir: C:\Users\wangli\PycharmProjects\Test\test
plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0
collecting ... collected 0 items============================ no tests ran in 0.65s ============================Process finished with exit code 0

 

cmd下运行:

pytest -v -k 用例名

pytest -k ‘not 用例名’  -v

pytest -k ‘用例名1 or 用例名2’  -v

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/568304.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Python】Error:'int' object is not callable

python错误: TypeError: int object is not callable 经过百度,可能是 你正在调用一个不能被调用的变量或对象,具体表现就是你调用函数、变量的方式错误。 如: max0 a[1.1, 2.0, 3.0, 4.0, 5.0] maxmax(a) 所以在命名变量时一定…

Pytest跳过执行之@pytest.mark.skip()详解大全

一、skip介绍及运用 在我们自动化测试过程中,经常会遇到功能阻塞、功能未实现、环境等一系列外部因素问题导致的一些用例执行不了,这时我们就可以用到跳过skip用例,如果我们注释掉或删除掉,后面还要进行恢复操作。 1、skip跳过成…

python并发编程5-线程

一、复习 # 线程# 线程是进程中的执行单位# 线程是CPU调度的最小单位# 线程之间资源共享## 线程的开启和关闭以及切换的时间开销远远小于进程# 线程本身可以在同一时间使用多个CPU # threading# 使用方法类似于multiprocess # python与线程# CPython解释器在解释代码中容易产生…

Pytest标记用例失败之xfail

项目自动化测试中,如果接口2依赖接口1的响应结果值,或者用例2依赖用例1的响应结果值,自然需要与接口1或用例1进行关联,但是当接口1或用例1执行失败,接口2或用例2一定也是失败的,所以这时不必要再进行接口2和…

python并发编程6-协程

1、基础 # 进程 启动多个进程 进程之间是由操作系统(时间片轮转)负责调用 # 线程 启动多个线程 真正被CPU执行的最小单位是线程# 开启一个线程 创建一个线程 寄存器 堆栈# 关闭一个线程 等都需要时间 # 协程:本质上是一个线程# 能够在多个任…

JMeter之HTTP请求上传文件/上传图片

Jmeter实现接口上传图片 一、Fiddler抓包上传图片接口 查看WebForms&#xff0c;接口传参为空&#xff0c;文件/图片传参为<file>对用的Name值&#xff1a; Content-Disposition: form-data; name"file"; filename"IMG_20191116_110507.jpg" Con…

js关闭setInterval及终止ajax请求

用clearInterval&#xff08;&#xff09;即可搞定。亲测有效 $(document).ready(function(){c setInterval(checkIsExist,10000);//每10秒执行一次checkIsExist方法 }); function checkIsExist(){$.ajax({type: "POST",url: "/SecondServlet",data: &qu…

Jmeter吞吐量控制器详解

一、吞吐量控制器 吞吐量控制器(Throughput Controller)用来控制其下元件的执行次数&#xff0c;并无控制吞吐量的功能。 作用&#xff1a;控制其下的子节点的执行次数与负载比例分配 吞吐量控制器字段介绍&#xff1a; Total Executions&#xff1a;执行百分比&#xff08;…

Python递归通用接口响应深层提取

最近在做接口自动化断言时&#xff0c;每个接口文件里都写了一遍提取接口响应数据&#xff0c;然后append到列表里&#xff0c;传给公共的断言方法与sql查询出来的数据做比对&#xff0c;这样如果是100个接口&#xff0c;每个接口都写一遍接口响应数据提取&#xff0c;就要写10…

django与grpc融合的过程

一、通过socket将grpc接收的数据传输到django中 # djangogrpcsocket(服务端给客户端发送文件) 配置过程# 将socket的服务端作为一个线程&#xff0c;放在grpc服务端下&#xff0c;一起启动# 将socket的客户端作为一个模块&#xff0c;直接嵌入在websocket的while True循环之下接…

Jmeter之json条件提取实战(三)

有时我们想通过接口响应数据中的默写条件进行提取对应的字段&#xff0c;这时&#xff0c;就可以用到json条件提取&#xff0c;可以提取对应的值进行使用或迭代。 接口请求地址&#xff1a; sh.lianjia.com/api/newhouserecommend?type1&queryhttps%3A%2F%2Fsh.lianjia.…

python 手动拼接json数据

第一步&#xff1a;分别拼接为字符串 第二步&#xff1a;将字符串转化为list 第三歩&#xff1a;将两个list合并为dict 第四步&#xff1a;将dict转换为接送数据 如&#xff1a; import json keys [a, b, c] values [1, 2, 3] dictionary dict(zip(keys, values)) j …

Python格式化函数format详解

format用法 相对基本格式化输出采用‘%’的方法&#xff0c;format()功能更强大&#xff0c;该函数把字符串当成一个模板&#xff0c;通过传入的参数进行格式化&#xff0c;并且使用大括号‘{}’作为特殊字符代替‘%’使用方法由两种&#xff1a;b.format(a)和format(a,b) fo…

django后端用websocket传输数据

1、websocket服务端发送数据好像只能传输str类型数据。所以先将数据利用json.dumps()进行打包操作 json_data json.dumps(data) 2、websocket客户端接收数据时需要先将json对象进行解码。利用 var obj_temp JSON.parse(str); //由JSON字符串转换为JSON对象 此时若在界面直…

Python自动化测试问题及处理方法(一)

一、接口自动化测试中&#xff0c;会用到测试账号&#xff0c;如何合理运用账号&#xff1f; 账号一般用于接口登录、接口用例传参、操作sql等&#xff0c;目前账号是写到yaml配置文件里&#xff0c;如果1个账户使用会出现资源冲突&#xff0c;可以配置多个账号使用&#xff0…

Python自动化测试|如何解决前置模块及数据依赖(二)

在做接口自动化测试时&#xff0c;遇到下面这个疑惑&#xff0c;然后再群里请教了大家&#xff0c;讨论如下&#xff0c;可以参考下&#xff1a; 讨论1&#xff1a; 上海—橙子探索测试 10:12:34 自动化测试中&#xff0c;提现接口一般会依赖前置功能实名认证、绑卡、设置交易…

django启动时同时使用Schedule启动其他程序

1、安装Schedule 打开cmd输入&#xff1a; pip install schedule 2、打开django项目的views.py 导入模块 from apscheduler.scheduler import Scheduler 输入如下代码&#xff1a; sched Scheduler() # 实例化&#xff0c;固定格式 # sched.interval_schedule(days1,s…

Pytest框架集成Allure定制测试报告详解(一)

Allure简介 Allure是一款非常轻量级并且非常灵活的开源测试报告生成框架。 它支持绝大多数测试框架&#xff0c; 例如TestNG、Pytest、JUint等。它简单易用&#xff0c;易于集成。下面就Pytest如何与Allure集成做详细介绍。 Pytest框架集成Allure Pytest是Python的单元测试框架…

div里面放ul,使ul横向和纵向滚动

js代码&#xff1a; .infoShow{border:1px solid #000;overflow-y:auto;height:340px;}.infoShow ul{margin:0px;padding:0px;float:left;white-space: nowrap;overflow:hidden;}.infoShow ul li{float: left;text-align:left;list-style:none;display: inline;} 注意&#xf…

Pytest+Allure+Jenkins接口自动化项目实战(一)

经过一周多时间&#xff0c;基于pythonpytestexcelallure框架的接口自动化测试初版已基本实现&#xff0c;包括基本配置读取、用例读取、用例执行、sql读取执行、前置数据准备、后置数据清理以及测试报告生成等&#xff0c;环境独立运行、项目独立运行、用例独立运行、jenkins集…