pytest

pytest是一个非常成熟的全功能的Python测试框架

安装

pip install -U pytest

检查是否安装成功

pytest --version

 在pytest目录下添加test_Demo.py

def func(x):
    return x + 1

def test_answer():
    assert func(3) == 5

运行

pytest testDemo.py

 修改为test_Demo.py

def func(x):
    return x + 1

def test_answer():
    assert func(3) == 4

注:

  pytest将在当前目录及其子目录中运行所有名为test_*.py or *_test.py的文件

 在pytest目录下添加test_Demo1.py

def add(a,b):
   return a+b

def test_sum():
   assert  add(2,3)==8

 

https://docs.pytest.org/en/latest/index.html

 

posted @ 2020-06-08 12:39  慕尘  阅读(134)  评论(0编辑  收藏  举报