Skip to content

Commit 74310ef

Browse files
committed
Try again.
1 parent 210c57c commit 74310ef

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

tests/tests_transfers/aws/_test_aws_suggest_next.py renamed to tests/tests_transfers/aws/test_aws_suggest_next.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,9 @@ def aws_setup(self, setup_project_paths):
2626

2727
yield project
2828

29-
rclone.call_rclone(
30-
f"purge central_{project.project_name}_aws:{project.cfg['central_path'].parent} {rclone.get_config_arg(project.cfg)}"
29+
rclone.call_rclone_for_central_connection(
30+
project.cfg,
31+
f"purge central_{project.project_name}_aws:{project.cfg['central_path'].parent} {rclone.get_config_arg(project.cfg)}",
3132
)
3233

3334
@pytest.mark.asyncio

tests/tests_transfers/aws/test_aws_transfer.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ def aws_setup(self, pathtable_and_project):
2727

2828
yield [pathtable, project]
2929

30-
rclone.call_rclone(
31-
f"purge central_{project.project_name}_aws:{project.cfg['central_path'].parent} {rclone.get_config_arg(project.cfg)}"
30+
rclone.call_rclone_for_central_connection(
31+
project.cfg,
32+
f"purge central_{project.project_name}_aws:{project.cfg['central_path'].parent} {rclone.get_config_arg(project.cfg)}",
3233
)
3334

3435
@pytest.mark.parametrize(

tests/tests_transfers/gdrive/test_gdrive_suggest_next.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ def gdrive_setup(self, setup_project_paths):
2828

2929
yield project
3030

31-
rclone.call_rclone(
32-
f"purge central_{project.project_name}_gdrive:{project.cfg['central_path'].parent}"
31+
rclone.call_rclone_for_central_connection(
32+
project.cfg,
33+
f"purge central_{project.project_name}_gdrive:{project.cfg['central_path'].parent} {rclone.get_config_arg(project.cfg)}",
3334
)
3435

3536
@pytest.mark.asyncio

0 commit comments

Comments
 (0)