diff --git a/tests/test_integration.py b/tests/test_integration.py index 19d884d..5f1dfea 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -13,29 +13,29 @@ from bdfr.__main__ import cli does_test_config_exist = Path('test_config.cfg').exists() -def copy_test_config(tmp_path: Path): - shutil.copy(Path('test_config.cfg'), Path(tmp_path, 'test_config.cfg')) +def copy_test_config(run_path: Path): + shutil.copy(Path('test_config.cfg'), Path(run_path, 'test_config.cfg')) -def create_basic_args_for_download_runner(test_args: list[str], tmp_path: Path): - copy_test_config(tmp_path) +def create_basic_args_for_download_runner(test_args: list[str], run_path: Path): + copy_test_config(run_path) out = [ - 'download', str(tmp_path), + 'download', str(run_path), '-v', - '--config', str(Path(tmp_path, 'test_config.cfg')), - '--log', str(Path(tmp_path, 'test_log.txt')), + '--config', str(Path(run_path, 'test_config.cfg')), + '--log', str(Path(run_path, 'test_log.txt')), ] + test_args return out -def create_basic_args_for_archive_runner(test_args: list[str], tmp_path: Path): - copy_test_config(tmp_path) +def create_basic_args_for_archive_runner(test_args: list[str], run_path: Path): + copy_test_config(run_path) out = [ 'archive', - str(tmp_path), + str(run_path), '-v', - '--config', str(Path(tmp_path, 'test_config.cfg')), - '--log', str(Path(tmp_path, 'test_log.txt')), + '--config', str(Path(run_path, 'test_config.cfg')), + '--log', str(Path(run_path, 'test_log.txt')), ] + test_args return out