Pytest01-环境搭建

Posted surpassme

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Pytest01-环境搭建相关的知识,希望对你有一定的参考价值。

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 filespythonlibsite-packagespytest\\__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-环境搭建的主要内容,如果未能解决你的问题,请参考以下文章

Python+pytest+allure 环境搭建

Pytest+Allure环境的搭建

Python37+pytest 在IDEA中进行开发的环境搭建

使用IDEA写Python之pytest环境搭建及第一个程序编写

pytest+allure2+jenkins搭建

五分钟,帮你搞定web自动化测试开发环境搭建:Python+webdriver+pytest