1、pytest环境:
安装指令:pip install pytest
查看版本:pip show pytest
C:\Users\27806>pip show pytest Name: pytest Version: 5.4.3 Summary: pytest: simple powerful testing with Python Home-page: https://docs.pytest.org/en/latest/ Author: Holger Krekel, Bruno Oliveira, Ronny Pfannschmidt, Floris Bruynooghe, Brianna Laugher, Florian Bruhin and others Author-email: None License: MIT license Location: c:\skyworkspace\worktools\python\python38\lib\site-packages Requires: atomicwrites, more-itertools, wcwidth, py, pluggy, colorama, attrs, packaging Required-by: pytest-metadata, pytest-html, httprunner, allure-pytest
2、用例设计原则
文件名,以 test_* .py 开头 或 *_test.py 结束 (必须加下划线,否则识别不到)
以 Test 开头的类 (可以加下划线 Test_ )
以 test_ 开头的函数、方法 (可以不加下划线)
所有的包package都必须要有 __init__.py 文件
test_aa.py 的代码如下:
class Testaa(): def testaa(self): a = ‘hello‘ b = ‘world‘ print(‘=============test_aa==============‘) assert a in ‘hello world‘
test_bb.py 代码如下:
def test_bb(): a = ‘hello‘ b = ‘world‘ print(‘=============test_bb==============‘) assert a in ‘hello world‘
test_cc.py 代码如下:
def test_cc(): a = ‘hello‘ b = ‘world‘ print(‘=============test_cc==============‘) assert a in ‘hello world‘
执行结果如下:
3、Pycharm设置pytest运行器
在 pycharm中 以pytest方式运行,需要改该工程设置默认的运行器:file->Setting->Tools->Python Integrated Tools->项目名称->Default test runner->选择pytest;
建议:在开始写代码之前就设置pytest运行器,如果在写了代码之后再设置pytest运行器的话,设置pytest运行器之前写的类,在类名后右击,不会弹出 run pytest for .....
鼠标放在 class类名后面,右击。
备注:设置pytest运行器之前写的类,在类名后右击,不会弹出 Run pytest for .....
此时需要清空缓存 (点击减号) ,然后右击类名,可以弹出 Run pytest for .....
点击减号,清空缓存。
4、可以在 package、模块、类名、方法名 后面右击,然后执行 Run pytest for .... 执行对应的某个 package、模块、类名、方法名 ;比如:有多个放在时,在某个方法后面右击,只运行这个一个方法。