From fc5f4a040576552b9347dec911bbb0a6ace94586 Mon Sep 17 00:00:00 2001 From: Serene-Arc Date: Thu, 6 May 2021 09:59:26 +1000 Subject: [PATCH] Fix log access issue for archive integration tests --- tests/test_integration.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/test_integration.py b/tests/test_integration.py index 6345a7c..5901802 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -23,7 +23,13 @@ def create_basic_args_for_download_runner(test_args: list[str], tmp_path: Path): def create_basic_args_for_archive_runner(test_args: list[str], tmp_path: Path): - out = ['archive', str(tmp_path), '-v', '--config', 'test_config.cfg'] + test_args + out = [ + 'archive', + str(tmp_path), + '-v', + '--config', 'test_config.cfg', + '--log', str(Path(tmp_path, 'test_log.txt')), + ] + test_args return out