测试积点老人 发表于 2022-3-22 14:10:44

Python多线程执行测试用例请教

请教,每一个测试用例执行时需要休息10s,如何使用多线程方法,将测试用例全部执行完,只需要10s左右的时间?源代码如下:import unittest,threading
def test_task(name):
    print(f"{threading.current_thread().name}:",name)
    time.sleep(10)

class TestTask(unittest.TestCase):
    def test01(self):
      test_task(1)
    def test02(self):
      test_task(2)
    def test03(self):
      test_task(3)
    def test04(self):
      test_task(4)
    def test05(self):
      test_task(5)
    def test06(self):
      test_task(6)
    def test07(self):
      test_task(7)
    def test08(self):
      test_task(8)
    def test09(self):
      test_task(9)
    def test10(self):
      test_task(10)

kallinr 发表于 2022-3-23 10:26:27

设置线程

qqq911 发表于 2022-3-23 10:27:59

拆分用例,用多线程执行

jingzizx 发表于 2022-3-23 16:56:50

每一个线程控制一个,性能测试的思路就是这样
页: [1]
查看完整版本: Python多线程执行测试用例请教