From 287f051862eed4fa9ab0c13bdb2a217aa0298903 Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Tue, 9 Sep 2025 17:03:34 -0600 Subject: [PATCH] orchestra/test: Ignore configured ssh key This removes false negatives when a user has configued an ssh key. Signed-off-by: Zack Cerza --- teuthology/orchestra/test/test_connection.py | 1 + 1 file changed, 1 insertion(+) 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') -- 2.47.3