From 7d6add891c3d562d8abf04a1b86d39e9b3c25e87 Mon Sep 17 00:00:00 2001 From: Joe Ziminski <55797454+JoeZiminski@users.noreply.github.com> Date: Mon, 9 Oct 2023 13:48:46 +0100 Subject: [PATCH] Continue working. --- tests/tests_integration/test_ssh_setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/tests_integration/test_ssh_setup.py b/tests/tests_integration/test_ssh_setup.py index 9a95c9e04..6d08e05b7 100644 --- a/tests/tests_integration/test_ssh_setup.py +++ b/tests/tests_integration/test_ssh_setup.py @@ -10,7 +10,7 @@ # from pytest import ssh_config from datashuttle.utils import ssh -TEST_SSH = False +TEST_SSH = True @pytest.mark.skipif(TEST_SSH is False, reason="TEST_SSH is false") @@ -30,9 +30,9 @@ def project(test, tmp_path): ssh_test_utils.setup_project_for_ssh( project, - ssh_config.FILESYSTEM_PATH, - ssh_config.CENTRAL_HOST_ID, - ssh_config.USERNAME, + central_path=f"/home/sshuser/datashuttle/{project.project_name}", # TODO: centralise these + central_host_id="localhost", + central_host_username="sshuser", ) yield project