From: Aníbal Limón Date: Mon, 26 Jun 2017 16:12:40 +0000 (-0500) Subject: selftest/cases/package: Call parent setUpClass method X-Git-Tag: uninative-1.7~126 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=7281c995ff2b009c3fb23c7af1d91fe106ca8f87;p=openembedded-core.git selftest/cases/package: Call parent setUpClass method Since config paths are now passed in Test context the setUpClass method is expected to be call. Signed-off-by: Aníbal Limón --- diff --git a/meta/lib/oeqa/selftest/cases/package.py b/meta/lib/oeqa/selftest/cases/package.py index 5b9a6d1585..169698f780 100644 --- a/meta/lib/oeqa/selftest/cases/package.py +++ b/meta/lib/oeqa/selftest/cases/package.py @@ -17,6 +17,8 @@ class VersionOrdering(OESelftestTestCase): @classmethod def setUpClass(cls): + super().setUpClass() + # Build the tools we need and populate a sysroot bitbake("dpkg-native opkg-native rpm-native python3-native") bitbake("build-sysroots -c build_native_sysroot")