fix apiserver cleanup issues in tests
This commit is contained in:
parent
83770d20fa
commit
4fac125443
@ -54,6 +54,7 @@ def botclient(default_conf, mocker):
|
|||||||
apiserver.add_rpc_handler(rpc)
|
apiserver.add_rpc_handler(rpc)
|
||||||
yield ftbot, TestClient(apiserver.app)
|
yield ftbot, TestClient(apiserver.app)
|
||||||
# Cleanup ... ?
|
# Cleanup ... ?
|
||||||
|
apiserver.cleanup()
|
||||||
finally:
|
finally:
|
||||||
ApiServer.shutdown()
|
ApiServer.shutdown()
|
||||||
|
|
||||||
@ -261,6 +262,7 @@ def test_api__init__(default_conf, mocker):
|
|||||||
with pytest.raises(OperationalException, match="RPC Handler already attached."):
|
with pytest.raises(OperationalException, match="RPC Handler already attached."):
|
||||||
apiserver.add_rpc_handler(RPC(get_patched_freqtradebot(mocker, default_conf)))
|
apiserver.add_rpc_handler(RPC(get_patched_freqtradebot(mocker, default_conf)))
|
||||||
|
|
||||||
|
apiserver.cleanup()
|
||||||
ApiServer.shutdown()
|
ApiServer.shutdown()
|
||||||
|
|
||||||
|
|
||||||
@ -388,6 +390,7 @@ def test_api_run(default_conf, mocker, caplog):
|
|||||||
MagicMock(side_effect=Exception))
|
MagicMock(side_effect=Exception))
|
||||||
apiserver.start_api()
|
apiserver.start_api()
|
||||||
assert log_has("Api server failed to start.", caplog)
|
assert log_has("Api server failed to start.", caplog)
|
||||||
|
apiserver.cleanup()
|
||||||
ApiServer.shutdown()
|
ApiServer.shutdown()
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user