当前位置:   article > 正文

pytest多线程或多进程执行测试用例_pytest -xdist 多线程

pytest -xdist 多线程

pytest多线程或多进程执行测试用例

  • 使用多进程多线程执行用例时
    用例之间都是独立的,执行没先后顺序
  • 安装库
    pip install pytest-parallel
  • 命令参数

–workers=n *:多进程运行需要加此参数, n是进程数。默认为1。 –tests-per-worker=n *:多线程运行, n是每个worker运行的最大并发线程数。默认为1

  • 四个测试用例为例
class TestStandardDataset01:
    def test1(self):
        print('test1执行---------')
        time.sleep(2)

    def test2(self):
        print('test2执行---------')
        time.sleep(2)

    def test3(self):
        print('test3执行---------')
        time.sleep(2)

    def test4(self):
        
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/649574
推荐阅读
相关标签
  

闽ICP备14008679号