pytest框架笔记(十四) : 配置文件pytest.ini

一、前言

pytest配置文件可以改变pytest的运行方式,它是一个固定的文件pytest.ini文件,读取配置信息,按指定的方式去运行

二、ini配置文件

pytest里面有些文件是非test文件

  • pytest.ini : pytest的主配置文件,可以改变pytest的默认行为
  • conftest.py : 测试用例的一些fixture配置集中管理
  • _init_.py : 识别该文件夹为python的package包
  • tox.ini与pytest.ini类似,用tox工具时候才有用
  • setup.cfg也是ini格式文件,影响setup.py的行为

ini文件基本格式

使用pytest --help指令可以查看pytest.ini的设置选项

三、mark标记

mark标记可以让用户自定义标记,如下案例,使用了2个标签:webtest和hello,使用mark标记功能对于以后分类测试非常有用

#!encoding=utf-8
import pytest

#自定义mark
@pytest.mark.webtest
def test_send_http():
    print('mark web test')

def test_something_quick():
    pass

def test_another():
    pass

#自定义mark
@pytest.mark.hello
class TestClass:
    def test_01(self):
        print('hello')

    def test_02(self):
        print('hello world')

if __name__=="__main__":
    pytest.main(['-s','test_class021.py','-m=hello'])

运行结果

================================================== test session starts ===================================================
platform darwin -- Python 3.7.1, pytest-5.1.2, py-1.7.0, pluggy-0.13.0
rootdir: /Users/luozelin/Desktop/pytest/pytest_demo,
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值