测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Pytest----pytest.ini自定义测试文件、测试用例、测试类命名规则
收藏本文
作者:redrose2100 类别: 日期:2022-05-15 05:35:20 阅读:1076 次 消耗积分:0 分
### 1 下面以如下需求为例实例演示如何自定义测试文件、测试用例,测试类的命名规则 * 测试文件以 test_, check_开头,或者_test, _check结尾 * 测试用例以test_,check_开头,或者_test, _check结尾 * 测试类以Test,Check开头,或者Test,Check结尾 ### 2 实现步骤: (1)在根目录创建 pytest.ini文件 (2) 在pytest.ini文件中编写如下内容: ```python [pytest] python_files = test_* *_test.py check_* *_check.py python_classes = Test* Check* *Test *Check python_functions = test_* check_* *_test *_check ``` (3)依次创建 test_demo.py,demo_test.py,check_demo.py,demo_check.py ![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/b56d0fe8-d42a-11ee-87a4-0242ac110004.png) (4)在上述每个文件中均写入如下测试用例代码 ```python def test_demo(): print("in test_demo...") def demo_test(): print("in demo_test...") def check_demo(): print("in test_demo...") def demo_check(): print("in demo_test...") class CheckDemo: def test_demo(self): print("in test_demo...") def demo_test(self): print("in demo_test...") def check_demo(self): print("in test_demo...") def demo_check(self): print("in demo_test...") class DemoCheck: def test_demo(self): print("in test_demo...") def demo_test(self): print("in demo_test...") def check_demo(self): print("in test_demo...") def demo_check(self): print("in demo_test...") ``` (5)执行 pytest 查看结果如下:即均已生效 ```python G:\redrose2100\src\demo>pytest ========================================================================== test session starts =========================================================================== platform win32 -- Python 3.9.5, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 rootdir: G:\redrose2100\src\demo, configfile: pytest.ini plugins: allure-pytest-2.9.43, rerunfailures-10.0 collected 48 items check_example.py ............ [ 25%] example_check.py ............ [ 50%] example_test.py ............ [ 75%] test_example.py ............ [100%] =========================================================================== 48 passed in 0.12s =========================================================================== G:\redrose2100\src\demo> ```
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/208
上一篇:
Pytest----定制自定义命令行参数
下一篇:
Pytest----repeat 插件使用方法
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件