2

現在、次のようにテストを実行しています。

py.test test.py -s -v -d --tx 3*popen

これは、3 つの python プロセスにあるすべての pytest テスト関数を分散します。

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 に渡すことができるフラグはありますか?

4

0 に答える 0