Merge pull request #3262 from freqtrade/humanize_show_trades_error

Humanize show-trades error when no database is specified
This commit is contained in:
hroff-1902 2020-05-05 21:28:14 +03:00 committed by GitHub
commit 77d889beff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 0 deletions

View File

@ -206,6 +206,11 @@ def start_show_trades(args: Dict[str, Any]) -> None:
from freqtrade.persistence import init, Trade
import json
config = setup_utils_configuration(args, RunMode.UTIL_NO_EXCHANGE)
if 'db_url' not in config:
raise OperationalException("--db-url is required for this command.")
logger.info(f'Using DB: "{config["db_url"]}"')
init(config['db_url'], clean_open_orders=False)
tfilter = []

View File

@ -1077,3 +1077,11 @@ def test_show_trades(mocker, fee, capsys, caplog):
assert '"trade_id": 1' in captured.out
assert '"trade_id": 2' in captured.out
assert '"trade_id": 3' not in captured.out
args = [
"show-trades",
]
pargs = get_args(args)
pargs['config'] = None
with pytest.raises(OperationalException, match=r"--db-url is required for this command."):
start_show_trades(pargs)