From 2be715a453c2afdb8ac8b2884d91be728a07994c Mon Sep 17 00:00:00 2001 From: Peter Marko Date: Thu, 13 Nov 2025 13:15:33 +0100 Subject: [PATCH] oeqa: drop unnecessary dependency from go runtime tests The tests do not use scp command, so openssh-scp is not needed. Signed-off-by: Peter Marko Signed-off-by: Mathieu Dubois-Briand Signed-off-by: Richard Purdie --- meta/lib/oeqa/runtime/cases/go.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/lib/oeqa/runtime/cases/go.py b/meta/lib/oeqa/runtime/cases/go.py index fc7959b5f4b..d4b69438a56 100644 --- a/meta/lib/oeqa/runtime/cases/go.py +++ b/meta/lib/oeqa/runtime/cases/go.py @@ -28,7 +28,6 @@ class GoCompileTest(OERuntimeTestCase): @OEHasPackage('go') @OEHasPackage('go-runtime') @OEHasPackage('go-runtime-dev') - @OEHasPackage('openssh-scp') def test_go_compile(self): # Check if go is available status, output = self.target.run('which go') @@ -49,7 +48,6 @@ class GoCompileTest(OERuntimeTestCase): @OEHasPackage('go') @OEHasPackage('go-runtime') @OEHasPackage('go-runtime-dev') - @OEHasPackage('openssh-scp') def test_go_module(self): # Check if go is available status, output = self.target.run('which go') -- 2.47.3