pytest常用插件推荐

之前用到的一些pytest插件,在这记录一下。

pytest-sugar

  • 作用:改变pytest执行的默认外观。
  • 安装:pip install pytest-sugar
$ pytest -v test_demo.py
Test session starts (platform: darwin, Python 3.7.3, pytest 4.5.0, pytest-sugar 0.9.2)
cachedir: .pytest_cache
rootdir: /Users/libo/Learn
plugins: sugar-0.9.2
collecting ...
 test_demo.py::test_one ✓                                                                                                                                                                     33% ███▍
 test_demo.py::test_two ✓                                                                                                                                                                     67% ██████▋
 test_demo.py::test_three ✓                                                                                                                                                                  100% ██████████

Results (0.02s):
       3 passed

pytest-ordering

  • 作用:改变pytest默认的执行顺序;
  • 安装:pip install pytest-ordering
  • 用法:通过给用例添加@pytest.mark.run(order=x)装饰器,例如:
import pytest

@pytest.mark.run(order=2)
def test_one():
    assert True

@pytest.mark.run(order=1)
def test_two():
    assert True

本来按顺序执行应该是先执行test_one然后再执行test_two,但是加了@pytest.mark.run(order=1)之后用例的执行顺序变了:

$ pytest -v test_order.py
Test session starts (platform: darwin, Python 3.7.3, pytest 4.3.1, pytest-sugar 0.9.2)
cachedir: .pytest_cache
rootdir: /Users/libo/Learn, inifile:
plugins: sugar-0.9.2, ordering-0.6
collecting ...
 test_order.py::test_two ✓                                                                                                                                                                    50% █████
 test_order.py::test_one ✓                                                                                                                                                                   100% ██████████

Results (0.02s):
       2 passed

pytest-picked

  • 作用:依赖git,仅仅执行你已经修改但是还没提交的测试用例;
  • 安装:pip install pytest-picked
  • 用法:pytest --picked
$ git status

On branch master
Your branch is ahead of 'origin/master' by 1 commit.
  (use "git push" to publish your local commits)

Untracked files:
  (use "git add <file>..." to include in what will be committed)

  api.py
  tests/api/
  tests/test_board.py

nothing added to commit but untracked files present (use "git add" to track)

可以看到没有执行的为api.py, tests/api/, tests/test_board.py.
此时执行pytest --picked:

$ pytest --picked

============================= test session starts =============================
platform darwin -- Python 3.6.4, pytest-3.6.0, py-1.5.3, pluggy-0.6.0
rootdir: /Users/ana.gomes/personal-workspace/grandma, inifile:
plugins: picked-0.1.0, mock-1.10.0, flask-0.10.0, deadfixtures-2.0.1
collecting 34 items
Changed test files... 1. ['tests/test_board.py']
Changed test folders... 1. ['tests/api/']
collected 34 items

tests/test_board.py .                                                      [ 50%]
tests/api/test_new.py .                                                    [100%]

=========================== 2 passed in 0.07 seconds ===========================

pytest-rerunfailures

  • 作用:重新运行失败的测试用例;
  • 安装:pip install pytest-rerunfailures
  • 用法:
    pytest --reruns 5
    pytest --reruns 5 --reruns-delay 1 --reruns-delay指定重新运行的延迟
  • 指定单个用例:
@pytest.mark.flaky(reruns=5)
def test_example():
    import random
    assert random.choice([True, False])

pytest-xdist

  • 作用:并发执行测试用例;
  • 安装:pip install pytest-xdist
  • 用法:pytest -n NUM NUM表示执行的CPU数量,也可以使用auto来自动识别系统的cpu数量并执行;
    如果一个用例失败导致python解释器crash掉,pytest-xdist会自动重启该解释器所在的worker并且正常报告错误,你可以使用--max-worker-restart选项来限制可以重新启动的worker,或者使用--max-worker-restart=0完全禁用重新启动。

pytest-parallel

  • 作用:使用多处理(并行)和多线程(并发)快速运行测试;
  • pytest-xdist相比:
pytest-xdist
  1. 不是线程安全的;
  2. 多线程时表现不佳;
  3. 需要state隔离;
pytest-parallel
  1. 线程安全的;
  2. 可以对http请求使用非阻塞IO来使其具有高性能;
  3. 在Python环境中管理很少或没有状态;
  • 安装:pip install pytest-parallel
  • 执行:
# runs 2 workers with 1 test per worker at a time
$ pytest --workers 2

# runs 4 workers (assuming a quad-core machine) with 1 test per worker
$ pytest --workers auto

# runs 1 worker with 4 tests at a time
$ pytest --tests-per-worker 4

# runs 1 worker with up to 50 tests at a time
$ pytest --tests-per-worker auto

# runs 2 workers with up to 50 tests per worker
$ pytest --workers 2 --tests-per-worker auto
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容

  • 一、Python简介和环境搭建以及pip的安装 4课时实验课主要内容 【Python简介】: Python 是一个...
    _小老虎_阅读 5,735评论 0 10
  • pytest使用 1、pytest简介 官档是最好的教程 pytest是一个非常成熟的全功能的Python测试框架...
    道无虚阅读 4,194评论 1 5
  • 1. 概述 pytest是一个非常成熟的全功能的Python测试框架,主要特点有以下几点: 1、简单灵活,容易上手...
    红薯爱帅阅读 262,484评论 6 81
  • Pytest基础使用 Pytest是一个易用、强大、灵活的功能测试框架,并且兼容unittest和nose的测试用...
    韩志超阅读 30,145评论 7 43
  • 目录: 安装及入门 使用和调用方法 原有TestSuite使用方法 断言的编写和报告 Pytest fixture...
    韩志超阅读 5,352评论 0 5