pytest總結摘要

2021-10-16 14:12:52 字數 791 閱讀 7909

1. 安裝方式:

pip install -u pytest
2.檔案、類和方法的名稱

檔名:test_*.py格式或*_test.py格式

類名:test*格式

函式名:test_*格式

3.pytest執行方式:

# 命令列模式

pytest path/test_*.py

# main主函式模式

pytest.main("-s test_*.py")

4.pytest.ini 存放在專案的根目錄下

5. 給case新增關鍵字,按照關鍵字執行

@pytest.mark.smock

def atest01_create_device(self):

pass

執行命令:

pytest -m smock
6.自動重跑失敗的用例

需要安裝pytest-rerunfailures

pip install -u pytest-rerunfailures
命令列:

pytest test_*.py --reruns num

pytest使用 個人摘要

以下內容為pytest的常用命令行執行命令,再這裡進行彙總 pytest測試執行方面的命令列 pytest k 模糊搜尋案例名 以模糊搜尋的方式搜尋案例,並執行找到的測試案例 pytest s 執行測試的時候,列印詳細的日誌,所有的列印,都會列印到執行介面中 pytest h 查詢測試案例的幫助資訊...

NLP TextRank NMF文字摘要總結

textrank nmf文字摘要總結 我們在用textrank作文本摘要時,提出一種新穎的方法來解決長文字的摘要提取問題。textrank 一般模型可以表示為乙個有向有權圖 g v,e 由點集合 v和邊集合 e 組成,e 是v v的子集。圖中任兩點 vi vj 之間邊的權重為 wji 對於乙個給定的...

pytest04 pytest常用外掛程式

02 生成測試報告 外掛程式 安裝 pip install pytest html 生成測試報告 pytest html 測試報告路徑 html03 在pytest.ini中加入報告生成命令 addopts s html test hello.html 直接執行 pytest即可 如果這裡加上了 s...