We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 467ad89 commit 7d6add8Copy full SHA for 7d6add8
tests/tests_integration/test_ssh_setup.py
@@ -10,7 +10,7 @@
10
# from pytest import ssh_config
11
from datashuttle.utils import ssh
12
13
-TEST_SSH = False
+TEST_SSH = True
14
15
16
@pytest.mark.skipif(TEST_SSH is False, reason="TEST_SSH is false")
@@ -30,9 +30,9 @@ def project(test, tmp_path):
30
31
ssh_test_utils.setup_project_for_ssh(
32
project,
33
- ssh_config.FILESYSTEM_PATH,
34
- ssh_config.CENTRAL_HOST_ID,
35
- ssh_config.USERNAME,
+ central_path=f"/home/sshuser/datashuttle/{project.project_name}", # TODO: centralise these
+ central_host_id="localhost",
+ central_host_username="sshuser",
36
)
37
38
yield project
0 commit comments