亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何在Pytest中使用mark

發布時間:2021-03-20 16:44:51 來源:億速云 閱讀:162 作者:Leah 欄目:開發技術

如何在Pytest中使用mark?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

使用方法:

1、注冊標簽名

2、在測試用例/測試類前面加上:@pytest.mark.標簽名

打標記范圍:測試用例、測試類、模塊文件

注冊方式:

1、單個標簽:

在conftest.py添加如下代碼:

def pytest_configure(config):
  # demo是標簽名
  config.addinivalue_line("markers", "demo:示例運行")

2、多個標簽:

在conftest.py添加如下代碼:

def pytest_configure(config):
  marker_list = ["testdemo", "demo", "smoke"] # 標簽名集合
  for markers in marker_list:
    config.addinivalue_line("markers", markers)

3、添加pytest.ini 配置文件(在你項目的任意一個文件下,新建一個file,文件命名為pytest.ini)

[pytest]
markers=
  smoke:this is a smoke tag
  demo:demo
  testdemo:testdemo

使用方法:

import pytest


@pytest.mark.testdemo
def test_demo01():
  print("函數級別的test_demo01")


@pytest.mark.smoke
def test_demo02():
  print("函數級別的test_demo02")


@pytest.mark.demo
class TestDemo:
  def test_demo01(self):
    print("test_demo01")

  def test_demo02(self):
    print("test_demo02")

運行方式:

1、命令行模式

通過標記表達式執行
pytest -m demo
這條命令會執行被裝飾器@pytest.mark.demo裝飾的所有測試用例

生成html報告:
pytest -m demo --html=Report/report.html

生成xml報告:
pytest -m demo --junitxml=Report/report.xml

運行指定模塊:
pytest -m demo --html=Report/report.html TestCases/test_pytest.py

運行指定測試目錄
pytest -m demo --html=Report/report.html TestCases/

通過節點id來運行:
pytest TestCases/test_pytest.py::TestDemo::test_demo01

通過關鍵字表達式過濾執行
pytest -k "MyClass and not method"
這條命令會匹配文件名、類名、方法名匹配表達式的用例

獲取用例執行性能數據
獲取最慢的10個用例的執行耗時
pytest --durations=10

2、新建run.py文件運行,代碼如下:

pytest.main(["-m","demo","--html=Report/report.html"])

看完上述內容,你們掌握如何在Pytest中使用mark的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

旺苍县| 沾化县| 通道| 遂平县| 枣庄市| 嵊州市| 潜山县| 和硕县| 项城市| 洪洞县| 安塞县| 乳山市| 沈阳市| 施甸县| 长丰县| 布拖县| 铁岭市| 当涂县| 贵港市| 铜川市| 衡水市| 赣榆县| 九龙坡区| 肥乡县| 灯塔市| 孟津县| 阳信县| 望奎县| 繁峙县| 陈巴尔虎旗| 都兰县| 临夏市| 南澳县| 青岛市| 淳安县| 南投县| 邓州市| 晋中市| 娱乐| 定南县| 从化市|