We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5048d0c + 62b8f63 commit d8e9c97Copy full SHA for d8e9c97
pytest_flask/fixtures.py
@@ -57,7 +57,7 @@ def __init__(self, app, port):
57
def start(self):
58
"""Start application in a separate process."""
59
def worker(app, port):
60
- app.run(port=port, use_reloader=False)
+ app.run(port=port, use_reloader=False, threaded=True)
61
self._process = multiprocessing.Process(
62
target=worker,
63
args=(self.app, self.port)
0 commit comments