001、pytest环境、用例设计原则、Pycharm设置pytest运行器

 

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 文件

 

001、pytest环境、用例设计原则、Pycharm设置pytest运行器

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'

执行结果如下:

001、pytest环境、用例设计原则、Pycharm设置pytest运行器

 

3、Pycharm设置pytest运行器

  在 pycharm中 以pytest方式运行,需要改该工程设置默认的运行器:file->Setting->Tools->Python Integrated Tools->项目名称->Default test runner->选择pytest;

        建议:在开始写代码之前就设置pytest运行器,如果在写了代码之后再设置pytest运行器的话,设置pytest运行器之前写的类,在类名后右击,不会弹出 run pytest for .....

001、pytest环境、用例设计原则、Pycharm设置pytest运行器

  鼠标放在 class类名后面,右击。  

  备注:设置pytest运行器之前写的类,在类名后右击,不会弹出 Run pytest for .....

001、pytest环境、用例设计原则、Pycharm设置pytest运行器

 

上一篇:Mysql优化(2) 字符集设置以及分区


下一篇:001. 使用SystemProperties的几种方式