赞
踩
简介:Hydra 和 pytest 可以一起使用,基于 Hydra + Pytest 的应用可以轻松地管理复杂配置,并编写参数化的单元测试,使得Python开发和测试将变得更为高效。
安装:
pip install hydra-core pytest
案例源码:my_app.py
# -*- coding: utf-8 -*- # time: 2023/06/29 18:01 # file: my_app.py # 公众号: 伤心的辣条 import hydra from omegaconf import DictConfig @hydra.main(config_path="conf", config_name="config", version_base="1.1") def my_app(cfg: DictConfig) -> int: return multiply(cfg.x, cfg.y) def multiply(x: int, y: int) -> int: return x * y if __name__ == "__main__": my_app()
测试用例:test_hy.py
# -*- coding: utf-8 -*-
# time: 2023/6/29 18:08
# file: test_hy.py
# 公众号: 伤心的辣条
import pytest
from my_app import multiply
@pytest.mark.parametrize("x, y, expected", [(5, 3, 15), (2, 4, 8)])
def test_multiply(x, y, expected):
assert multiply(x, y) == expected
同级目录下:新建conf目录,新建文件 config.yaml
# conf/config.yaml
x: 5
y: 3
运行结果:
(pytf-cpu) C:\Users\>pytest test_hy.py
====================================================================== test session starts ========
platform win32 -- Python 3.8.13, pytest-7.3.1, pluggy-1.0.0
rootdir: C:\Users\
plugins: hydra-core-1.3.2
collected 2 items
test_hy.py .. [100%]
======================================================================= 2 passed in 0.04s =========
注意事项:Hydra 在 pytest 环境中的行为可能与在常规 Python 环境中的行为略有不同,因为 pytest 可能会干扰 Hydra 的工作方式。如果在测试中遇到任何问题,建议查阅 Hydra 和 pytest 的官方文档,或在相关社区寻求帮助。
实际上,可以利用 Hydra 的强大功能和 pytest 的灵活性,创建更复杂的测试和应用。
最后: 为了回馈铁杆粉丝们,我给大家整理了完整的软件测试视频学习教程,朋友们如果需要可以自行免费领取 【保证100%免费】
软件测试面试文档
我们学习必然是为了找到高薪的工作,下面这些面试题是来自阿里、腾讯、字节等一线互联网大厂最新的面试资料,并且有字节大佬给出了权威的解答,刷完这一套面试资料相信大家都能找到满意的工作。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。