欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pytest使用

程序员文章站 2024-02-27 13:49:15
...

pytest安装

环境介绍:macos 系统本身有python 2.7自己安装python3
命令行安装pytest:

pip3 install pytest

使用:
在有测试例的文件夹下直接运行pytest会自动运行以test开头或结尾的函数或者test类(不能有init函数),当然需要在相应python文件中import pytest,但是有可能会报以下错误:
command not found:pytest
解决方法:
使用python3 -m pytest进行执行,以下是一个测试案例:

#源程序 test_hello.py
import pytest
def hello():
	return "hello world"
def test_hello():
	assert hello()="hello world"

测试流程:

python3 -m pytest

-----------------------------------------------------------------------------------------
platform darwin -- Python 3.7.0, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
rootdir: /Users/liukai/Desktop/py, inifile:
collected 1 item

test_hello.py .                                                                                                                                                            [100%]

======================== 1 passed in 0.03 seconds ===========================