From: Zack Cerza Date: Tue, 9 Sep 2025 23:03:34 +0000 (-0600) Subject: orchestra/test: Ignore configured ssh key X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F2086%2Fhead;p=teuthology.git orchestra/test: Ignore configured ssh key This removes false negatives when a user has configued an ssh key. Signed-off-by: Zack Cerza --- diff --git a/teuthology/orchestra/test/test_connection.py b/teuthology/orchestra/test/test_connection.py index c93a73325..b9f7296aa 100644 --- a/teuthology/orchestra/test/test_connection.py +++ b/teuthology/orchestra/test/test_connection.py @@ -31,6 +31,7 @@ class TestConnection(object): def clear_config(self): config.config.teuthology_yaml = '' config.config.load() + config.config.ssh_key = None def test_split_user_just_host(self): got = connection.split_user('somehost.example.com')