91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Pytest使用skip跳過執行測試的案例有哪些

發布時間:2020-08-14 13:37:01 來源:億速云 閱讀:192 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關Pytest使用skip跳過執行測試的案例有哪些的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

1、@pytest.mark.skip(reason=" ") -- 跳過執行測試函數

可傳入一個非必須參數reason表示原因

import pytest
@pytest.mark.skip(reason="no reason")
def test_01():
  print("---用例a執行---")
class TestCase():
  @pytest.mark.skip(reason="no reason")
  def test_02(self):
    print("---用例b執行---")

  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py ss---用例c執行---

2、@pytest.mark.skipif(condition...) -- 若滿足condition,則跳過測試函數

傳入condition參數為判斷條件,可以選擇傳入非必須參數reason;如果多個標簽一起使用,滿足其中一個跳過條件則會跳過該測試函數。

import pytest
def test_01():
  print("---用例a執行---")
class TestCase():
  #當多個@pytest.mark.skipif()標簽時,若滿足一個,則跳過測試函數
  @pytest.mark.skipif(condition='a' >= 'b', reason="no reason")
  @pytest.mark.skipif(condition='a' <= 'b', reason="no reason")
  def test_02(self):
    print("---用例b執行---")

  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py ---用例a執行---
.s---用例c執行---

3、自定義@pytest.mark.skip()標簽

myskip = pytest.mark.skip() 或 myskip = pytest.mark.skipif(condition=...)

裝飾時用該變量代替標簽即可:@myskip

import pytest
# myskip = pytest.mark.skip()
myskip = pytest.mark.skipif(condition=2>1, reason="no reason")

@myskip
def test_01():
  print("---用例a執行---")

class TestCase():

  @myskip
  def test_02(self):
    print("---用例b執行---")

  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py ss---用例c執行---

4、通過pytest.skip()方法跳過測試函數

import pytest

def test_01():
  pytest.skip(msg="no reason")
  print("---用例a執行---")

class TestCase():

  def test_02(self):
    pytest.skip()
    print("---用例b執行---")

  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py ss---用例c執行--

5、跳過測試類

跳過測試類其實和跳過測試方法一樣,使用@pytest.mark.skip()和@pytest.mark.skipif()兩個標簽,用他們裝飾測試類就好啦。

import pytest
myskip = pytest.mark.skip(reason="no reason")
def test_01():
  print("---用例a執行---")
@myskip
class TestCase():
  def test_02(self):
    print("---用例b執行---")
  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py ---用例a執行---

6、跳過模塊

使用pytestmark(不可更改變量名)變量,讓他等于標簽即可。

import pytest

pytestmark = pytest.mark.skip(condition=2>1, reason='no reason')

def test_01():
  print("---用例a執行---")

class TestCase():

  def test_02(self):
    print("---用例b執行---")

  def test_03(self):
    print("---用例c執行---")

輸出結果:

test_fixture2.py sss

7、pycharm中運行多個測試文件

依次將要運行的文件名寫在后面即可,用逗號隔開,無需鏈表元組等形式。

if __name__ == "__main__":
  pytest.main(['-s', 'test_fixture1.py', 'test_fixture2.py'])

感謝各位的閱讀!關于Pytest使用skip跳過執行測試的案例有哪些就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

石嘴山市| 德昌县| 达日县| 绥滨县| 平顺县| 元氏县| 财经| 温州市| 平山县| 英德市| 莲花县| 聂拉木县| 拜泉县| 铅山县| 华阴市| 博兴县| 台前县| 六盘水市| 长阳| 前郭尔| 沙雅县| 岚皋县| 土默特左旗| 夹江县| 毕节市| 合江县| 夏邑县| 宣武区| 广西| 莱州市| 兴海县| 庆城县| 类乌齐县| 双桥区| 怀远县| 紫阳县| 绥滨县| 鱼台县| 武义县| 会泽县| 白水县|