标签:strong install 知识 创建 cti rom == 单元 testing
? ? 本机运行环境如下所示:
pip install -U pytest
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
File -> Setting... -> Tools -> Python Integrated Tools 在右侧选项中找到Testing,修改Default test runner为pytest,详细如下图所示:
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
在以上示例可以看出:
? ? 以上示例如都能成功运行,则代表环境已经搭建完成,可以开始学习后面的知识点了。
原文地址:https://www.cnblogs.com/surpassme/p/13227808.html
本文同步在微信订阅号上发布,如各位小伙伴们喜欢我的文章,也可以关注我的微信订阅号:woaitest,或扫描下面的二维码添加关注:
标签:strong install 知识 创建 cti rom == 单元 testing
原文地址:https://www.cnblogs.com/surpassme/p/13227808.html