python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python pytest.main()

Python pytest.main()运行测试用例

作者:爱学习de测试小白

这篇文章主要介绍了Python pytest.main()运行测试用例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧

前言

前面一直使用命令行运行pytest用例,本篇来学下使用pytest.main()来运行测试用例

pytest.main()

不带参数运行

import pytest
# 等同于命令行执行 pytest
# 默认运行的是当前目录及子目录的所有文件夹的测试用例
pytest.main()

参数运行

在命令行运行带上 -s 参数

 pytest -s -x

pytest.main() 里面等价于

import pytest
# 带上-s参数
pytest.main(["-s","-x"])

指定测试用例

指定运行 study 文件夹下的全部用例

pytest study

pytest.main() 里面等价于

import pytest
# 运行指定文件夹目录
pytest.main(["study "])

运行指定的 study/test_77.py 下的全部用例

pytest study/test_77.py

pytest.main() 里面等价于

import pytest
# 运行指定py文件
pytest.main(["study/tset_77.py"])

运行指定的 study/test_77.py 下的某个用例

pytest study/test_77.py::tset_01

pytest.main() 里面等价于

import pytest
# 运行指定py文件下测试用例
pytest.main(["study/tset_77.py::test_01"])

指定plugins参数

# -*- coding: utf-8 -*-
import pytest
def test_01():
    """测试用例1"""
    name = '小白'
    age = 28
    city = 'Beijing'
    assert name == '小白'
    assert age == 28
    assert city == 'Beijing'
# 自定义插件
class MyPlugin(object):
    def pytest_sessionstart(self):
        print("*** test run start blog地址 https://blog.csdn.net/IT_heima")
if __name__ == '__main__':
	# 通过 plugins 参数指定加载
    pytest.main(['-s', '-v', 'test_77.py'], plugins=[MyPlugin()])

到此这篇关于Python pytest.main()运行测试用例的文章就介绍到这了,更多相关Python pytest.main()内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文