• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Pytest allure 命令行参数的使用

    先看看 allure 命令的帮助文档

    cmd 敲

    allure -h

    allure 命令的语法格式

    allure [options] [command] [command options]

    options 列表

    Options:
        --help 命令行帮助文档
        -q, --quiet
          切换至安静模式
          Default: false
        -v, --verbose
          切换至冗长模式
          Default: false
        --version
          版本信息
          Default: false

    command 列表

    这里只讲前三个常用的

    generate 命令行参数

    作用

    生成 allure 的html 报告

    语法格式

    generate [options]  allure 结果目录

    注:allure 结果目录就是运行 pytest 命令,--alluredir 跟的那个目录

    pytest -sq --alluredir= ./allure

    命令选项

    主要就是用 -c、-o 两个参数

    open 命令行参数

    作用

    打开生成的 allure 报告,就是打开 generate 命令生成的报告

    语法格式

    open [options] allure报告目录

    注:allure 报告目录就是运行 allure generate 命令,-o 跟的那个目录

    allure generate -o ./allure-report

    命令选项

    serve 命令行参数

    作用

    打开 allure 报告

    语法格式

    serve [options] allure 结果目录

    注:allure 结果目录就是运行 pytest 命令,--alluredir 跟的那个目录

    pytest -sq --alluredir= ./allure

    命令选项

    浏览器打开 allure 报告的两种方式

    allure serve

    标准写法

    # 执行 pytest,指定 allure 结果目录
    pytest -sq --alluredir=./allure
    
    # 打开 allure 报告
    allure serve ./allure

    allure generate + allure open

    标准写法

    # 执行 pytest,指定 allure 结果目录
    pytest -sq --alluredir=./allure
    
    # 生成 allure 的 html 报告
    allure generate -c -o ./allure-report ./allure
    
    # 打开 allure 报告
    allure open ./allure-report
    

    当然不写 -o 也可以

    看看 allure-report 的目录结构

    到此这篇关于Pytest allure 命令行参数的使用的文章就介绍到这了,更多相关Pytest allure 命令行参数内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    您可能感兴趣的文章:
    • python的pytest框架之命令行参数详解(上)
    • 详解用Pytest+Allure生成漂亮的HTML图形化测试报告
    • python pytest进阶之conftest.py详解
    • python pytest进阶之fixture详解
    • Pytest测试框架基本使用方法详解
    • Python 测试框架unittest和pytest的优劣
    • Pytest参数化parametrize使用代码实例
    • 在pycharm中文件取消用 pytest模式打开的操作
    上一篇:在pyCharm中下载第三方库的方法
    下一篇:Python绘制雷达图时遇到的坑的解决
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Pytest allure 命令行参数的使用 Pytest,allure,命令行,参数,