Pytest學習(十三)- 重復執行之pytest-repeat的使用


寫在前面

這個插件,可以幫助我們很好的解決自動化測試過程中的一些偶線性bug難以復現的問題,但前提是,當前自動化腳本是獨立的,不依賴任何其他腳本。個人覺得還是失敗重運行的一種體現,就和TestNG是一樣的,下面我們來一起感受下這個插件的使用吧。

環境准備

  • py.test版本 ≥ 2.8
  • Python 2.7、3.4+

安裝插件

pip3 install pytest-repeat -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com

如何使用

結合《生成HTML報告插件之pytest-html的使用》這篇文章,還是結合輸出的html報告來看比較直觀。

1、舉個例子

# -*- coding: utf-8 -*-
# @Time    : 2020/11/29 8:52
# @Author  : longrong.lang
# @FileName: test_repeat.py
# @Software: PyCharm
# @Cnblogs :https://www.cnblogs.com/longronglang

def test_repeat():
    import random
    num = random.randint(1, 9)
    print(f"\n輸出隨機數:{num}")
    assert num == 2

2、結合失敗重跑,並輸出報告

使用示例如下:

# 使用下面哪條命令都可執行
pytest --html=report.html --self-contained-html  -s --reruns=5 --count=3 test_repeat.py
pytest --html=report.html --self-contained-html  -s --reruns=5 --count 3 test_repeat.py

執行效果如下:

生成html報告如下:

注意:

  • reruns=5:意思是失敗重運行5次
  • count=3:意思是重復執行3次

3、僅重復執行

使用示例如下:

# 使用下面哪條命令都可執行
pytest --html=report.html --self-contained-html  -s --count=3 test_repeat.py
pytest --html=report.html --self-contained-html  -s --count 3 test_repeat.py

執行效果如下:

很明顯這里顯示的只是重復執行3次

4、重復測試直到失敗

這在我們實際測試中,就很受用了,驗證偶現問題,可以反復運行相同的測試腳本直到失敗,可以將pytest的 -x 選項與pytest-repeat結合使用,以強制測試運行程序在第一次失敗時停止。
使用示例如下:

py.test --count=1000 -x test_repeat.py

執行效果如下:

5、使用注解的形式來實現重復執行

使用 @pytest.mark.repeat(count)標記在測試方法即可,這和TestNg的 @Test(invocationCount = 5)是一樣的。
示例代碼如下:

@pytest.mark.repeat(3)
def test_repeat2():
    print("\n 測試腳本")

執行效果如下:

repeat-scope的使用

命令行參數
作用:可以覆蓋默認的測試用例執行順序,類似fixture的scope參數

  • function:默認,范圍針對每個用例重復執行,再執行下一個用例
  • class:以class為用例集合單位,重復執行class里面的用例,再執行下一個
  • module:以模塊為單位,重復執行模塊里面的用例,再執行下一個
  • session:重復整個測試會話,即所有測試用例的執行一次,然后再執行第二次

1、重復執行class里面的用例

即class中的測試方法,不存在混合情況,示例代碼如下:

# -*- coding: utf-8 -*-
# @Time    : 2020/11/29 10:07
# @Author  : longrong.lang
# @FileName: test_repeatClass.py
# @Software: PyCharm
# @Cnblogs :https://www.cnblogs.com/longronglang
class TestRepeatClass1(object):
    def test_repeat1(self):
        print("\n repeat 1。。。。。。。。。")

class TestRepeatClass2(object):
    def test_repeat2(self):
        print("\n repeat 2。。。。。。。。。")

命令行執行:

pytest -s --count=2 --repeat-scope=class test_repeatClass.py

執行效果如下:

2、以模塊為單位,重復執行模塊里面的用例

可以理解為混合,既有類也有單獨的測試方法,示例代碼如下:

# -*- coding: utf-8 -*-
# @Time    : 2020/11/29 10:07
# @Author  : longrong.lang
# @FileName: test_repeatClass.py
# @Software: PyCharm
# @Cnblogs :https://www.cnblogs.com/longronglang

def test_repeat1():
    print("test_repeat1")


class TestRepeatClass1(object):
    def test_repeat1(self):
        print("\n repeat 1。。。。。。。。。")

執行命令:

pytest -s --count=2 --repeat-scope=moudle test_repeatClass.py

執行效果如下:

兼容性問題
pytest-repeat不能與unittest.TestCase測試類一起使用。無論--count設置多少,這些測試始終僅運行一次,並顯示警告

系列參考文章:
https://www.cnblogs.com/poloyy/category/1690628.html


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM