pytest不使用 conftest.py 传递配置参数并设置全局变量

  1. 创建config_handler.py
python 复制代码
import os
import yaml

# 当前路径(使用 abspath 方法可通过dos窗口执行)
current_path = os.path.dirname(os.path.abspath(__file__))
# 上上级目录
ffather_path = os.path.abspath(os.path.join(current_path,"../../"))

global_config_path = os.path.join(ffather_path, r"conf/config.yaml")  # 默认yaml文件路径

def load_config(config_path=None):
    global global_config_path
    if config_path:
        global_config_path = config_path

    with open(global_config_path, 'r', encoding='utf-8', errors='ignore') as file:
        data = yaml.load(file, Loader=yaml.FullLoader)

    return data
  1. conftest.py
python 复制代码
import pytest
import config_handler

def pytest_addoption(parser):
    parser.addoption(
        "--config", action="store",  # 定义--config参数,用于接收配置文件的路径
        help="Path to the configuration file"
    )

def pytest_configure(config):
    config_path = config.getoption("--config")
    config_handler.global_config_path = config_path  # 设置全局配置文件路径
  1. test_script.py
python 复制代码
import config_handler

def test_example():
    config_data = config_handler.load_config()
    # 使用config_data进行测试

执行命令:pytest .\TestCases\A\test_add.py -s --config=conf/config_test.yaml

说明:

  • config_handler.py 包含加载配置文件的逻辑和全局变量的管理。
  • conftest.py

pytest_configure 函数用于初始化全局配置文件路径,根据命令行参数 --config 的值来设置全局变量。

pytest_addoption是一个 pytest 插件系统中的钩子函数,用于添加自定义的命令行选项。当 pytest 执行时,会调用这个函数来注册你定义的选项。

def pytest_addoption(parser):parser.addoption(...) 的结合使用,你定义了一个新的 pytest 命令行选项 --config,使得用户可以在运行 pytest 时通过命令行传递一个配置文件的路径

  • test_script.py 中的测试函数可以直接使用 config_handler.load_config() 来加载配置文件。

通过以上方式,可以根据需要选择合适的项目结构和需求的方法来传递配置参数,并在整个项目中共享和使用这些配置。

相关推荐
2402_857589362 分钟前
SpringBoot框架:作业管理技术新解
java·spring boot·后端
HBryce246 分钟前
缓存-基础概念
java·缓存
斯凯利.瑞恩7 分钟前
Python决策树、随机森林、朴素贝叶斯、KNN(K-最近邻居)分类分析银行拉新活动挖掘潜在贷款客户附数据代码
python·决策树·随机森林
一只爱打拳的程序猿20 分钟前
【Spring】更加简单的将对象存入Spring中并使用
java·后端·spring
杨荧22 分钟前
【JAVA毕业设计】基于Vue和SpringBoot的服装商城系统学科竞赛管理系统
java·开发语言·vue.js·spring boot·spring cloud·java-ee·kafka
minDuck24 分钟前
ruoyi-vue集成tianai-captcha验证码
java·前端·vue.js
yannan2019031328 分钟前
【算法】(Python)动态规划
python·算法·动态规划
蒙娜丽宁38 分钟前
《Python OpenCV从菜鸟到高手》——零基础进阶,开启图像处理与计算机视觉的大门!
python·opencv·计算机视觉
光芒再现dev40 分钟前
已解决,部署GPTSoVITS报错‘AsyncRequest‘ object has no attribute ‘_json_response_data‘
运维·python·gpt·语言模型·自然语言处理
为将者,自当识天晓地。42 分钟前
c++多线程
java·开发语言