mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 11:29:48 +08:00
修复线程报错bug
This commit is contained in:
@@ -6,6 +6,8 @@ import requests
|
||||
from ate import utils
|
||||
from tests import api_server
|
||||
|
||||
def apprun():
|
||||
_ = api_server.app.run()
|
||||
|
||||
class ApiServerUnittest(unittest.TestCase):
|
||||
""" Test case class that sets up an HTTP server which can be used within the tests
|
||||
@@ -15,7 +17,7 @@ class ApiServerUnittest(unittest.TestCase):
|
||||
def setUpClass(cls):
|
||||
cls.host = "http://127.0.0.1:5000"
|
||||
cls.api_server_process = multiprocessing.Process(
|
||||
target=api_server.app.run
|
||||
target=apprun
|
||||
)
|
||||
cls.api_server_process.start()
|
||||
time.sleep(0.1)
|
||||
|
||||
Reference in New Issue
Block a user