Windows10安装配置allure

1、allure官方文档:

https://docs.qameta.io/allure/#_about
官方文档中,windows部署allure步骤:
Windows10安装配置allure_第1张图片
奈何提示scoop不是內部命令

2、安装scoop

scoop官方文档:https://scoop.sh/
需要打开power shell,执行提示的两条命令
Windows10安装配置allure_第2张图片
执行第二条命令的时候,再度报错,按照提示访问github查看解决方式:https://github.com/ScoopInstaller/Install#for-admin
Windows10安装配置allure_第3张图片
Windows10安装配置allure_第4张图片
执行GitHub中提供的命令

irm get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin [-OtherParameters ...]
# I don't care about other parameters and want a one-line command
iex "& {$(irm get.scoop.sh)} -RunAsAdmin"

Windows10安装配置allure_第5张图片

3、安装allure

参照官方文档,执行scoop install allure
Windows10安装配置allure_第6张图片

4、安装allure-pytest插件

pip install allure-pytest

另一种方式

1、下载allure压缩包
https://github.com/allure-framework/allure2/releases

2、解压缩
Windows10安装配置allure_第7张图片

3、将bin目录添加到path环境变量
Windows10安装配置allure_第8张图片
4、双击 allure.bat文件执行
Windows10安装配置allure_第9张图片

5、安装allure-pytest插件

pip install allure-pytest

你可能感兴趣的:(pytest,linux,python,运维)