From: Peter Marko Date: Thu, 13 Nov 2025 12:28:06 +0000 (+0100) Subject: oeqa: drop unnecessary dependency from go runtime tests X-Git-Tag: 2024-04.15-scarthgap~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e10e7848cb10307f133f181b41563c995df032a;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git 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: Steve Sakoman --- diff --git a/meta/lib/oeqa/runtime/cases/go.py b/meta/lib/oeqa/runtime/cases/go.py index fc7959b5f4..d4b69438a5 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')