pytest基础知识

1、安装 pip install pytest

2、pytest默认规则

- 读取以test开头文件夹、文件,函数作为识别函数对象

- 控制台不显示打印

import pytest
def test_01():
    print("test01")

def test_02():
    print("test02")

if __name__ == '__main__':
    pytest.main()

- 如果加 -s 就打印

import pytest
def test_01():
    print("test01")

def test_02():
    print("test02")

if __name__ == '__main__':
    pytest.main(['-s'])

 

上一篇:pytest断言


下一篇:pytest 跳过测试用例