diff --git a/tests/func/test_data_cloud.py b/tests/func/test_data_cloud.py index e69ffa9587..4270050633 100644 --- a/tests/func/test_data_cloud.py +++ b/tests/func/test_data_cloud.py @@ -33,7 +33,6 @@ from tests.remotes import ( _should_test_gcp, _should_test_hdfs, - _should_test_ssh, Azure, GDrive, S3, @@ -47,7 +46,6 @@ get_gcp_url, get_hdfs_url, get_local_url, - get_ssh_url, get_ssh_url_mocked, ) @@ -296,17 +294,6 @@ def test(self): self.assertTrue(os.path.isdir(self.dname)) -class TestRemoteSSH(TestDataCloudBase): - def _should_test(self): - return _should_test_ssh() - - def _get_url(self): - return get_ssh_url() - - def _get_cloud_class(self): - return RemoteSSH - - @pytest.mark.usefixtures("ssh_server") class TestRemoteSSHMocked(TestDataCloudBase): @pytest.fixture(autouse=True) @@ -442,18 +429,6 @@ def _test(self): self._test_cloud(TEST_REMOTE) -class TestRemoteSSHCLI(TestDataCloudCLIBase): - def _should_test(self): - return _should_test_ssh() - - def _test(self): - url = get_ssh_url() - - self.main(["remote", "add", TEST_REMOTE, url]) - - self._test_cloud(TEST_REMOTE) - - class TestRemoteHDFSCLI(TestDataCloudCLIBase): def _should_test(self): return _should_test_hdfs()