在測試類加註解@allure.feature表述整個測試模組
在測試方法加註解@allure.story表述該模組下的某個測試案例或測試場景
執行指定模組或執行測試場景時,可以執行下面命令(allure.feature比allure.story優先順序高)
pytest -s -v 測試檔案 --allure-feature("模組名")
pytest -s -v 測試檔案 --allure-stories("案例名")
對應到html報告內容,可以看到每個測試案例每個步驟的資訊
在測試類加註解@allure.feature表述整個測試模組
在測試方法加註解@allure.story表述該模組下的某個測試案例或測試場景
執行指定模組或執行測試場景時,可以執行下面命令(allure.feature比allure.story優先順序高)
pytest -s -v 測試檔案 --allure-feature("模組名")
pytest -s -v 測試檔案 --allure-stories("案例名")
對應到html報告內容,可以看到每個測試案例每個步驟的資訊