当我使用python-xdist库并行启动测试时,会在报告门户中创建多个启动。
如何通过单次启动来平衡我的测试?
我的测试:
def test_RP():
assert True == True
def test_RP2():
assert True == False
当我运行测试时:
py.test -n 2 -v -s tests/home/login_test.py --rp-launch LoginGmailParallel
在RP中创建了3个不同的启动(1为空):