码迷,mamicode.com
首页 > 其他好文 > 详细

Pytest01-环境搭建

时间:2020-07-03 00:54:51      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:strong   install   知识   创建   cti   rom   ==   单元   testing   

1.环境搭建

1.1 运行环境

? ? 本机运行环境如下所示:

  • Python: 3.7.6
  • OS:Windows 10 x64
  • IDE:PyCharm 2020.1
  • Pytest:5.4.2

1.2 安装pytest

  • 1、在命令行窗口中执行以下命令
 pip install -U pytest
  • 2、在命令行窗口执行以下命令,验证是否安装成功

1.方法一

pytest --version
This is pytest version 5.4.2, imported from d:\program files\python\lib\site-packages\pytest\__init__.py

2.方法二

>>> import pytest
>>> print(pytest.__version__)
5.4.2

1.3 在PyCharm中设置默认单元测试框架为Pytest

File -> Setting... -> Tools -> Python Integrated Tools 在右侧选项中找到Testing,修改Default test runner为pytest,详细如下图所示:

技术图片

1.4 创建示例测试

import pytest

# First of sample function
def Add(x:int,y:int)->int:
    return x+y

# First of test function
def test_add_01():
    assert Add(2,3)==5

def test_add_02():
    assert Add(3,4)==6

1.5 运行测试

  • 方法一:在PyCharm中右键,点击Run ‘pytest in test_01.py...‘

技术图片

  • 方法二:在命令行中运行

技术图片

在以上示例可以看出:

  • 1个成功,1个失败,而Pytest已经很明确的指出存在错误的地方

? ? 以上示例如都能成功运行,则代表环境已经搭建完成,可以开始学习后面的知识点了。

原文地址:https://www.cnblogs.com/surpassme/p/13227808.html

本文同步在微信订阅号上发布,如各位小伙伴们喜欢我的文章,也可以关注我的微信订阅号:woaitest,或扫描下面的二维码添加关注:
技术图片

Pytest01-环境搭建

标签:strong   install   知识   创建   cti   rom   ==   单元   testing   

原文地址:https://www.cnblogs.com/surpassme/p/13227808.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!