From d5bae3a8c63d3e68af286dc72bc6cff80997f5f1 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 19 Aug 2021 09:31:17 -0400 Subject: [PATCH] manually set save_files=True in unit tests --- lbry/testcase.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lbry/testcase.py b/lbry/testcase.py index 210b99b3c..0ab64686c 100644 --- a/lbry/testcase.py +++ b/lbry/testcase.py @@ -353,6 +353,7 @@ class CommandTestCase(IntegrationTestCase): self.server_config = Config( data_dir=server_tmp_dir, wallet_dir=server_tmp_dir, + save_files=True, download_dir=server_tmp_dir ) self.server_config.transaction_cache_size = 10000 @@ -395,6 +396,7 @@ class CommandTestCase(IntegrationTestCase): # needed during instantiation to access known_hubs path data_dir=wallet_node.data_path, wallet_dir=wallet_node.data_path, + save_files=True, download_dir=wallet_node.data_path ) conf.upload_dir = upload_dir # not a real conf setting