python接口自动化——pytest框架

1、pytest认识

(1)pytest比unnitest的优点:

(2)pytest使用规则:

  • 测试文件以test_开头(以_test结尾也可以)
  • 测试类以Test开头,并且不能带有__init__方法
  • 测试函数以test_开头

(3)安装3.8.0版本:

>pip install pytest==3.8.0

(4)pytest一个简单的例子

#test_pyexample.py脚本

import time
#import pytest  不用导入,安装好以后可以直接用

def add(x,y):
    return x+y
def test_add():
    assert add(1,2)==3

def test_add2():
    print("I am 2")
    time.sleep(3)
    assert add(1.2,1.3)==5.3
    assert add(2,2)==4

pycharm控制台运行结果:

Launching pytest with arguments test_pyexample.py::test_add2 in E:\navy_lu\python\exercise_script\pytest_script

============================= test session starts =============================
platform win32 -- Python 3.7.1, pytest-3.8.0, py-1.8.0, pluggy-0.12.0
rootdir: E:\navy_lu\python\exercise_script\pytest_script, inifile:
plugins: sugar-0.9.2collected 1 item

test_pyexample.py FI am 2

test_pyexample.py:8 (test_add2)
5.3 != 2.5

Expected :2.5
Actual   :5.3
 <Click to see difference>

def test_add2():
        print("I am 2")
        time.sleep(3)
>       assert add

  • 5
    点赞
  • 67
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值