其他分享
首页 > 其他分享> > pytest结合allure生成报告

pytest结合allure生成报告

作者:互联网

1. allure的安装:

(1)jdk

(2)allure安装 (下载.msi安装包)

(3)配置allure环境变量: 如: D:\allure-2.18.1\bin

(4)安装pytest-allure : pip install pytest-allure

2. 生成报告

import os
import time

import pytest


if __name__ == '__main__':
    pytest.main()
    time.sleep(3)
    os.system("allure generate ./temps -o ./reports --clean")

# generate ./temps 是生成临时报告到 temps目录下
# -o ./report  输出最终报告到 reports目录下
# --clean 指每次生成报告前清理历史报告.

 

标签:__,allure,报告,生成,temps,pytest,import
来源: https://www.cnblogs.com/Avicii2018/p/16391378.html