pytest實現多進程與多線程運行超好用的插件
前言
如果想分佈式執行用例,用例設計必須遵循以下原則:
1、用例之間都是獨立的,
2、用例a不要去依賴用例b
3、用例執行沒先後順序,
4、隨機都能執行每個用例都能獨立運行成功每個用例都能重復運行,不影響其它用例
這跟就我們平常多個人工測試一樣,用例都是獨立的,可以隨機分配不同人員執行,互相不依賴,用例之間也不存在先後順序
一、pytest-parallel
安裝:pip install pytest-parallel
常用參數配置:
- –workers=n:多進程運行需要加此參數, n是進程數。默認為1
- –tests-per-worker=n:多線程需要添加此參數,n是線程數
如果兩個參數都配置瞭,就是進程並行,每個進程最多n個線程,總線程數:進程數*線程數
註意:在windows上進程數永遠為1。
需要使用 if name == “main”:,在dos中運行會報錯
#!/usr/bin/env python # _*_ coding: utf-8 _*_ # @project : API_Service # @File : test_1.py # @Date : 2021/6/15 3:07 下午 # @Author : 李文良 # demo: import pytest def test_01(): print('測試用例1操作') def test_02(): print('測試用例2操作') def test_03(): print('測試用例3操作') def test_04(): print('測試用例4操作') def test_05(): print('測試用例5操作') def test_06(): print('測試用例6操作') def test_07(): print('測試用例7操作') def test_08(): print('測試用例8操作') if __name__ == "__main__": pytest.main(["-s", "test_1.py",'--workers=2', '--tests-per-worker=4'])
二、pytest-xdist
安裝:pip install pytest-xdist
不支持多線程
常用參數配置:
- -n=*:*代表進程數
多cpu並行執行用例,直接加個-n參數即可,後面num參數就是並行數量,比如num設置為3
- -n auto 自動偵測系統裡的CPU數目
- -n num 指定運行測試的處理器進程數
三、對比說明
pytest-parallel比pytst-xdist相對好用,功能支持多。
pytst-xdist不支持多線程,而pytest-parallel支持python3.6及以上版本,如果想做多進程並發在linux或者mac上做,在Windows上不起作用(Workers=1),如果做多線程linux/mac/windows平臺都支持,進程數為workers的值。
pytest-parallel常用配置命令如下
- –workers (optional) *:多進程運行需要加此參數, *是進程數。默認為1。
- –tests-per-worker (optional) *:多線程運行, *是每個worker運行的最大並發線程數。默認為1
pytest test.py –workers 3:3個進程運行
pytest test.py –tests-per-worker 4:4個線程運行
pytest test.py –workers 2 –tests-per-worker 4:2個進程並行,且每個進程最多4個線程運行,即總共最多8個線程運行。
四、特別註意
1、pytest-parallel的workers參數在windows系統下永遠是1,在linux和mac下可以取不同值。
2、pytest-parallel加瞭多線程處理後,最後執行時間是運行時間最長的線程的時間。
3、在windows下想用多進程的選pytst-xdist; 想用多線程的選pytest-parallel
到此這篇關於pytest實現多進程與多線程運行超好用的插件的文章就介紹到這瞭,更多相關pytest 多進程與多線程運行插件內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- pytest多進程或多線程執行測試實例
- 詳解pytest分佈式執行插件 pytest-xdist 的高級用法
- python單測框架之pytest常見用法
- python單元測試之pytest的使用
- Python測試框架pytest介紹