pytest.fixture

pytest 中,@pytest.fixture 提供了全局前置、局部前置等功能,以便在测试运行前后设置所需的环境和资源。具体用法如下:

1. 全局前置(scope="session"

使用 scope="session"autouse=True,实现一个在测试会话全局范围内只运行一次的前置。例如:

import pytest

@pytest.fixture(scope="session", autouse=True)

def global_setup(): # 会话范围内的全局前置逻辑

print("\nSetting up session-wide resources.")

yield # 会话范围内的清理逻辑

print("\nTearing down session-wide resources.")

此代码段会在整个测试会话开始前运行一次,并在测试会话结束时清理。

2. 局部前置(默认scope="function"

对于特定测试函数或模块可以定义局部前置,通过将 scope 设置为 function(默认值)或 module 实现。例如:

复制代码
 

python

复制代码

import pytest @pytest.fixture(scope="function") def function_setup(): # 局部的前置逻辑,针对每个测试函数执行 print("\nSetting up resources for individual test.") yield # 局部清理 print("\nTearing down resources for individual test.") def test_example_1(function_setup): # 这个测试会使用局部前置 `function_setup` assert True def test_example_2(function_setup): # 另一个测试也会使用局部前置 `function_setup` assert True

这样,function_setup 会在 test_example_1test_example_2 执行前后分别运行一遍。

3. 模块范围前置(scope="module"

如果需要在整个模块范围内执行前置,可以将 scope 设置为 module

复制代码
 

python

复制代码

import pytest @pytest.fixture(scope="module") def module_setup(): # 模块级别的前置逻辑 print("\nSetting up module-level resources.") yield # 模块级别的清理逻辑 print("\nTearing down module-level resources.") def test_module_example_1(module_setup): assert True def test_module_example_2(module_setup): assert True

在此示例中,module_setup 会在当前模块内首次使用前执行一次,并在模块结束时清理。

相关推荐
心随雨下7 小时前
TypeScript中extends与implements的区别
前端·javascript·typescript
摇滚侠7 小时前
Vue 项目实战《尚医通》,底部组件拆分与静态搭建,笔记05
前端·vue.js·笔记·vue
双向337 小时前
CANN训练营实战指南:从算子分析到核函数定义的完整开发流程
前端
caleb_5207 小时前
vue cli的介绍
前端·javascript·vue.js
Swift社区7 小时前
如何监测 Vue + GeoScene 项目中浏览器内存变化并优化性能
前端·javascript·vue.js
WYiQIU7 小时前
大厂前端岗重复率极高的场景面试原题解析
前端·javascript·vue.js·react.js·面试·状态模式
zbhbbedp282793cl7 小时前
unique_ptr和shared_ptr有何区别?
java·开发语言·jvm
.NET修仙日记7 小时前
第四章:C# 面向对象编程详解:从类与对象到完整项目实践
开发语言·c#·.net·源码·教程·.net core
IT_陈寒8 小时前
Redis 高并发实战:我从 5000QPS 优化到 5W+ 的7个核心策略
前端·人工智能·后端
m0_738120728 小时前
内网横向靶场——记录一次横向渗透(三)
开发语言·网络·安全·web安全·网络安全·php