pytest分布式运行问题
class TestCase:@staticmethod
def setup_class():
print("setup_class")
@staticmethod
def teardown_class():
print("teardown_class")
def test_case01(self):
print("test_case01")
def test_case02(self):
print("test_case02")
def test_case03(self):
print("test_case03")
启用2个线程执行时,setup_class和teardown_class会执行两次,要如何在一个类下只初始化一次呢 多线程的话是会这样的。 不会 学习 构建一次是否可以 使用@classmethod装饰器试试呢。
页:
[1]