0
我想找到一個乾淨的方式來執行py.test的setup_class方法失敗時執行一些代碼。給出以下示例:pytest如何對安裝失敗採取行動
class TestClass:
@classmethod
def setup_class(self):
print("I am performing setup actions!")
def test_one(self):
x = "this"
assert 'h' in x
def setup_cleanup(self):
print("I want to perfrom some cleanup action!")
如何在安裝程序引發異常時通過py.test觸發setup_cleanup方法?