remove --cancel_open_orders cli switch
This commit is contained in:
@@ -64,14 +64,6 @@ def test_parse_args_db_url() -> None:
|
||||
assert args["db_url"] == 'sqlite:///test.sqlite'
|
||||
|
||||
|
||||
def test_parse_args_cancel_open_orders_on_exit() -> None:
|
||||
args = Arguments(['trade']).get_parsed_arg()
|
||||
assert args["cancel_open_orders_on_exit"] is False
|
||||
|
||||
args = Arguments(['trade', '--cancel-open-orders-on-exit']).get_parsed_arg()
|
||||
assert args["cancel_open_orders_on_exit"] is True
|
||||
|
||||
|
||||
def test_parse_args_verbose() -> None:
|
||||
args = Arguments(['trade', '-v']).get_parsed_arg()
|
||||
assert args["verbosity"] == 1
|
||||
|
@@ -250,7 +250,6 @@ def test_load_config_with_params(default_conf, mocker) -> None:
|
||||
'--strategy', 'TestStrategy',
|
||||
'--strategy-path', '/some/path',
|
||||
'--db-url', 'sqlite:///someurl',
|
||||
'--cancel-open-orders-on-exit',
|
||||
]
|
||||
args = Arguments(arglist).get_parsed_arg()
|
||||
configuration = Configuration(args)
|
||||
@@ -259,7 +258,6 @@ def test_load_config_with_params(default_conf, mocker) -> None:
|
||||
assert validated_conf.get('strategy') == 'TestStrategy'
|
||||
assert validated_conf.get('strategy_path') == '/some/path'
|
||||
assert validated_conf.get('db_url') == 'sqlite:///someurl'
|
||||
assert validated_conf.get('cancel_open_orders_on_exit') is True
|
||||
|
||||
# Test conf provided db_url prod
|
||||
conf = default_conf.copy()
|
||||
|
Reference in New Issue
Block a user