Pytest学习-yaml+parametrize使用(pytest parameterize)
Pytest学习-yaml+parametrize使用(pytest parameterize)
一、读取yaml(关键点在于文件的路径)
1、单参数版,多参数版
#!/usr/bin/env python# -*- coding: UTF-8 -*-"""@Project :Pytest @File :read_data.py@IDE :PyCharm @Author :zhou@Date :2022/8/6 19:05 """import osimport yamlpath = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "config", "data.yaml")def read_data(): # 获取文件 f = open(path, encoding="utf-8") # 读取文件内容 data = yaml.safe_load(f) return dataget_data = read_data()print(get_data)
二、parametrize使用yaml文件中的数据
# 单参数版@pytest.mark.parametrize("name", get_data['person'])def test_parametrize_02(name): print(name)# 多参数版@pytest.mark.parametrize("name,word", get_data['person'])def test_parametrize_02(name,word): print(f'{name}'的口头禅是{word}')
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~