The docs說: 如果你寧願定義的測試功能直接在模塊級,你也可以使用以下功能來實現燈具: def setup_function(function):
""" setup any state tied to the execution of the given function.
Invoked for every test function in the module.
我必須讀取一個CSV文件,並且每行中的每個組合都需要運行一些方法。我希望將每行看作一個測試用例。是否有可能發送行作爲參數 - pytest參數化我的測試用例?你能給我一些關於如何做到這一點的想法嗎? 下面是僞代碼: class test_mytest:
def test_rows:
for row in csvreader:
run_method(row)