目前我正在运行测试如下:
py.test test.py -s -v -d --tx 3*popen
它将我们拥有的所有 pytest 测试函数分布在 3 个 python 进程中。
class TestClass():
def test_1():
pass
def test_2():
pass
def test_3():
pass
我希望 xdist/pytest 按类分配作业:
class TestClass1():
def test_1():
pass
class TestClass2():
def test_2():
pass
class TestClass3():
def test_3():
pass
是否有一个标志我可以通过 pytest/xdist 来做到这一点?