安裝
pip install pytest-html
執行,看下面的
安裝
pip install pytest-rerunfailures
執行,主要是那個注釋
@pytest.mark.flaky(reruns=5, reruns_delay=1) # 設定失敗執行5次,重新執行延遲1秒
pytest.main(['-sv', 'test_3.py', '--html=c:\\work\\1測試\\10自動化\\報告\\3.html'])
控制台執行
pytest -sv test_3.py --reruns 3 --html=c:\\work\\1測試\\10自動化\\報告\\3.html
安裝
pip install pytest-parallel
執行,main方法執行
@pytest.mark.flaky(reruns=5, reruns_delay=1) # 設定失敗執行5次,0延遲
# pytest.main(['-sv', 'test_3.py', '--html=c:\\work\\1測試\\10自動化\\報告\\3.html'])
pytest.main(['-sv', 'test_3.py', '--tests-per-worker', 'auto', '--html=c:\\work\\1測試\\10自動化\\報告\\3.html'])
pytest使用筆記(一)
使用環境及預置條件 pycharm win10 python3.6 pytest 1,建立示範的測試功能指令碼,另存為test sample.py,如下 test sample.py def func x return x 1 def test answer assert func 3 5 def ...
JavaEE 外掛程式使用筆記
一 使用display標籤分頁 1.後台只要查出所有資料,放在request域中傳到jsp頁中 2.在jsp上分頁顯示資料 1 匯入標籤庫 taglib prefix display uri 2 在頁面中加入如下 二 struts選單外掛程式使用 三 thickbox外掛程式使用 1.將thickb...
Lombok外掛程式使用筆記
lombok能通過註解的方式,在編譯時自動為屬性生成構造器 getter setter equals hashcode tostring方法。包含 tostring,equalsandhashcode,所有屬性的 getter,所有non final屬性的 setter和 requiredargsc...