当前位置: 代码迷 >> 综合 >> pytest 常用场景
  详细解决方案

pytest 常用场景

热度:31   发布时间:2023-12-02 17:22:21.0

pytest常用用法

  • 先走在跑起飞
    • 文件夹的方式执行
      • pytest 文件夹名
    • pytest 提供转测试打回
    • pytest 执行过滤用例(关键字)
      • pytest.ini
      • addopts 命令添加
      • norecursedirs 简化用例搜索
      • xfail_strict 有时间在研究
      • log_cli 日志
      • @pytest.mark.标签名
    • 多线程执行
      • pytest 文件夹名称 -n 线程数
    • 重试运行
      • pytest 文件夹名称 --reruns 次数
      • @pytest.mark.flaky(reruns=5, reruns_delay=2)