Pytest标记用例失败之xfail
生活随笔
收集整理的這篇文章主要介紹了
Pytest标记用例失败之xfail
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
? ? ? ?項目自動化測試中,如果接口2依賴接口1的響應結果值,或者用例2依賴用例1的響應結果值,自然需要與接口1或用例1進行關聯,但是當接口1或用例1執行失敗,接口2或用例2一定也是失敗的,所以這時不必要再進行接口2和用例2的執行,只需要判斷當接口1或用例1執行失敗,直接標記接口2或用例2失敗xfail
1、pytest 里面用 xfail 標記用例為失敗的用例pytest.xfail('跳過test_two用例標記為失敗') 2、標記xfail失敗的標識是x ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?[100%]
============================= 1 xfailed in 0.18s ==============================
import pytest,sys class Test(object):@pytest.fixture()def login(self):login_respones=Falseif login_respones:return Trueelse:return Falsedef test_two(self,login):print('login響應結果是%s:'%login)if login==False:pytest.xfail('跳過test_two用例標記為失敗') if __name__=='__main__':pytest.main(['-s','test01.py'])"C:\Program Files\Python35\python.exe" C:/Users/wangli/PycharmProjects/Test/test/test01.py ============================= test session starts ============================= platform win32 -- Python 3.5.2, pytest-5.1.2, py-1.8.0, pluggy-0.12.0 rootdir: C:\Users\wangli\PycharmProjects\Test\test plugins: allure-pytest-2.8.5, html-1.22.0, metadata-1.8.0 collected 1 itemtest01.py login響應結果是False: x============================= 1 xfailed in 0.18s ==============================Process finished with exit code 0
?
總結
以上是生活随笔為你收集整理的Pytest标记用例失败之xfail的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Jmeter篇】临界区控制器Criti
- 下一篇: Jmeter+ForEach控制器+Be